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