I have code that reads a file and then converts it to a string, the string is then written to a new file, although could someone demonstrate how to append this string to the
Try
StreamWriter writer = File.AppendText("C:\\test.txt"); writer.WriteLine(mystring);