System.Diagnostics.Stopwatch.QueryPerformanceCounter C# (CSharp) Method

QueryPerformanceCounter() private static method

private static QueryPerformanceCounter ( long &value ) : bool
value long
return bool
        private static bool QueryPerformanceCounter(out long value)
        {
            return Interop.Kernel32.QueryPerformanceCounter(out value);
        }
    }