Exemplo n.º 1
0
 public void Write_to_file_stream(string content)
 {
     using (var sw = file.NewFileStream())
     {
         sw.Write(content);
     }
 }