System.Diagnostics.Stopwatch.QueryPerformanceCounter C# (CSharp) 메소드

QueryPerformanceCounter() 개인적인 정적인 메소드

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