コード例 #1
0
ファイル: LoggingTest.cs プロジェクト: skolmer/atldotnet
 public LoggingTest()
 {
     LogDelegator.SetLog(ref theLog);
     theLog.Register(this);
 }
コード例 #2
0
 public CodeSnippets()
 {
     LogDelegator.SetLog(ref theLog);
     theLog.Register(this);
 }
コード例 #3
0
ファイル: ConsoleLogger.cs プロジェクト: superowner/atldotnet
 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);
 }