コード例 #1
0
ファイル: Logger.cs プロジェクト: jango2015/CodePorter
 public Logger()
 {
     this.LoggerProxy = new DataProcessProxy<LogObject>(new DataProcessHandler<LogObject>(this.OnProxyLog));
     this.LogCounterList = new Dictionary<string, LogCounter>();
 }
コード例 #2
0
ファイル: Tracer.cs プロジェクト: jango2015/CodePorter
 public Tracer()
 {
     this.TracerProxy = new DataProcessProxy<SortedList>(new DataProcessHandler<SortedList>(this.OnProxyTrace));
 }