FILE: Scrivere su un file in C#
Un metodo C# per scrivere su un file di testo (fn) la stringa contenuta in s
C#
using System.IO;
private static void WriteFile(string fn, string s)
{
try
{
StreamWriter wr = File.CreateText(fn);
wr.Write(s);
wr.Close();
}
catch
{
MessageBox.Show("Can't write file.", "Error",
MessageBoxButtons.OK,
MessageBoxIcon.Error);
}
return;
}