Async write text to a file using StreamWriter C# with Example



Async write text to a file using StreamWriter C# with Example

// 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); 
} 

0 Comment's

Comment Form