I can\'t seem to figure out how to write data to a file without overwriting it. I know I can use File.appendtext but I am not sure how to plug that into my syntax. Here is m
Best thing is
File.AppendAllText("c:\\file.txt","Your Text");