コード例 #1
0
 public static void Print(string text, params object[] args)
 {
     ProgramLog.Write(new LogEntry {
         target = console, message = String.Format(text, args), thread = Thread.CurrentThread
     });
 }
コード例 #2
0
 public static void Print(string text)
 {
     ProgramLog.Write(new LogEntry {
         target = console, message = text, thread = Thread.CurrentThread
     });
 }