I need to write a strings into a text file from C#, each string on a new line...How can I do this?
If you wish to append the text lines to the file, use AppendAllText:
string appendText = "This is extra text" + Environment.NewLine; File.AppendAllText(path, appendText);