can you append to a file in C# code example
Example: c# append to file
File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);
File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);