View Subcategory

Write a string to a file

csharp
System.IO.File.WriteAllText("filename.txt", "Some text to write to the file");

Append to a file

csharp
System.IO.File.AppendAllText("filename.txt", "Some text to append to the file");