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;
}
Tags:
C#236 .NET66 Esempi225
Potrebbe interessarti anche: