public void Start() { if (sw.IsRunning) { return; } startCPU = NativeMethods.GetProcessTime(); sw.Start(); }
public void Stop() { if (!sw.IsRunning) { return; } sw.Stop(); totalCPU += NativeMethods.GetProcessTime() - startCPU; totalTicks += sw.ElapsedTicks; }