Posted on Tuesday, May 04, 2010 3:56 PM
//write value to given file
//value is the text to write
//path is the location of the text file
public void funcWriter(string value, string path)
{
using (System.IO.StreamWriter sw = new System.IO.StreamWriter(path, true))
{
sw.WriteLine(value);
sw.Flush();
}
}