Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# streamwriter

// The StreamReader are using the Namespaces: System and system.IO

using (StreamWriter sw = new StreamWriter("c:WriteLines.txt")) //path
{
  sw.WriteLine("Here goes the text");

}
 
PREVIOUS NEXT
Tagged: #streamwriter
ADD COMMENT
Topic
Name
9+2 =