Air_Hockey_Simulator.MicroStopwatch.MicroStopwatch C# (CSharp) Method

MicroStopwatch() public method

public MicroStopwatch ( ) : System
return System
        public MicroStopwatch()
        {
            if (!System.Diagnostics.Stopwatch.IsHighResolution) {
                throw new Exception("On this system the high-resolution " +
                                    "performance counter is not available");
            }
        }
MicroStopwatch