Async write text to a file using StreamWriter

suggest change
// filename is a string with the full path
// true is to append        
using (System.IO.StreamWriter file = new System.IO.StreamWriter(filename, true))
{
   // Can write either a string or char array
   await file.WriteAsync(text);
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents