Skip to content

Instantly share code, notes, and snippets.

@dkalamari
Created May 23, 2013 06:38
Show Gist options
  • Save dkalamari/5633134 to your computer and use it in GitHub Desktop.
Save dkalamari/5633134 to your computer and use it in GitHub Desktop.
Write TXT file
using (StreamWriter outfile = new StreamWriter("TxtFile.txt", true))
{
outfile.WriteLine("Test" + Environment.NewLine + "2. row");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment