I need to write a strings into a text file from C#, each string on a new line...How can I do this?
You can use File.WriteAllLines:
string[] mystrings = new string[] { "Foo", "Bar", "Baz", "Qux" }; System.IO.File.WriteAllLines("myfile.txt", mystrings);