Development Blog : C# Code Samples,.NET Tips and Tricks
Post con tag File
Scrivere un file con C#
29 set
using System.IO;
String myFile = @”c:\temp.txt”;
using (StreamWriter testo = new StreamWriter(myFile))
{
testo.Write(“Testo da scrivere”);
}