コード例 #1
0
ファイル: Program.cs プロジェクト: ovuncgursoy/EtwStream
 public StopwatchMonitor(LoggerEventSource logger, string label, string memberName, string filePath, int line)
 {
     this.logger     = logger;
     this.label      = label;
     this.memberName = memberName;
     this.filePath   = filePath;
     this.line       = line;
     stopwatch       = Stopwatch.StartNew();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: Rurouni/EtwStream
 public StopwatchMonitor(LoggerEventSource logger, string label, string memberName, string filePath, int line)
 {
     this.logger = logger;
     this.label = label;
     this.memberName = memberName;
     this.filePath = filePath;
     this.line = line;
     stopwatch = Stopwatch.StartNew();
 }