示例#1
0
 public LoggingTest()
 {
     LogDelegator.SetLog(ref theLog);
     theLog.Register(this);
 }
示例#2
0
 public CodeSnippets()
 {
     LogDelegator.SetLog(ref theLog);
     theLog.Register(this);
 }
示例#3
0
 public ConsoleLogger()
 {
     LogDelegator.SetLog(ref theLog);
     theLog.Register(this);
 }
示例#4
0
 public ArrayLogger()
 {
     LogDelegator.SetLog(ref theLog);
     Items = new List <Log.LogItem>();
     theLog.Register(this);
 }