how to make a text file on c# not overwrie the file with the File method code example
Example: how to not overwrite a text file in c#
StreamWriter SW = new StreamWriter("Filename.txt", true);
StreamWriter SW = new StreamWriter("Filename.txt", true);