using(StreamWriter writer = new StreamWriter("debug.txt", true))
{
writer.WriteLine("whatever you text is");
}
The second “true” parameter tells it to append.
http://msdn.microsoft.com/en-us/library/36b035cb.aspx
using(StreamWriter writer = new StreamWriter("debug.txt", true))
{
writer.WriteLine("whatever you text is");
}
The second “true” parameter tells it to append.
http://msdn.microsoft.com/en-us/library/36b035cb.aspx