コード例 #1
0
ファイル: Client.cs プロジェクト: suzukimitsuru/GEALTest
 public void ClassStart(Type clasz)
 {
     this._clasz = new _testCount();
     Console.WriteLine("{0} Start", clasz.Name);
 }
コード例 #2
0
ファイル: Client.cs プロジェクト: suzukimitsuru/GEALTest
 public void MethodStart(Type clasz, MethodInfo method)
 {
     this._method = new _testCount();
     Console.WriteLine("{0}.{1}() Start", clasz.Name, method.Name);
 }
コード例 #3
0
ファイル: Client.cs プロジェクト: suzukimitsuru/GEALTest
 public void TotalStart(List <Type> classes)
 {
     this._total = new _testCount();
 }