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