Development Blog : C# Code Samples,.NET Tips and Tricks
Articoli con tag StreamWriter
Scrivere un file con C#
02 year ago anni fà
Scritto da Luigi Melisi
in Tips and Tricks
using System.IO;
String myFile = @”c:\temp.txt”;
using (StreamWriter testo = new StreamWriter(myFile))
{
testo.Write(“Testo da scrivere”);
}