I'm wondering if there is a ".net integrated" solution for exact time measurement (like the execution time of a function)? At the moment I'm using the PerformanceCounters from Kernel32.

    [DllImport("Kernel32.dll")]
    private static extern bool QueryPerformanceCounter(
        out long lpPerformanceCount);

    [DllImport("Kernel32.dll")]
    private static extern bool QueryPerformanceFrequency(
        out long lpFrequency);
link|improve this question

80% accept rate
feedback

2 Answers

up vote 12 down vote accepted

The Stopwatch is a high resolution framework timer class (that probably wraps that api).

link|improve this answer
It appears to be hardware and OS dependent, so it will be high resolution for windows, at least. – BC. Feb 13 '09 at 14:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.