Quick and Dirty Logging


When you don’t want to bother with logging classes, etc. :

using (var w = System.IO.File.AppendText(@"logfilepath")) { w.WriteLine("formatstring", formatparameters...); }

Leave a comment