csharp Log to a file

using System.IO;

public void LogToFile(string Message)
{
	StreamWriter file = new StreamWriter(Properties.Settings.Default.LogFile, true);
	file.WriteLine(Message);
	file.Close();
}
Logs a string to a text file.

Updated: Saturday 9th October 2010, 16:25pm

There are 0 comments

Leave a comment of your own

Comments are currently closed.