Beispiel #1
0
 public double MsTickCut()
 {
     TicksTimer.QueryPerformanceCounter(out this.stopTime);
     return((this.stopTime - this.startTime) / this.msFreq);
 }
Beispiel #2
0
 public void MsTickStart()
 {
     TicksTimer.QueryPerformanceCounter(out this.startTime);
 }