I need access to very precise timing in a .NET application.
I need microsecond precision.
Is there an easy way to do this in .NET?
|
|
|
The If the CPU doesn't provide high frequency timer, then the class will fallback to system timer which is in the range 100-50 times per second. |
||||
|
|
|
System.Diagnostics.Stopwatch is the right class for this degree of granularity in your timing, but make sure you use your Stopwatch object's
This is probably one of the subtlest potential errors in .Net. Also, beware that Stopwatch is highly granular, but it isn't necessarily all that accurate (depending on your definition of the term). The elapsed time returned by Stopwatch will tend to drift away from the system time.
If you're timing short durations, of course, this effect should not matter much at all. |
||||
|
|
The Stopwatch class is your best option due to it's accuracy: http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.aspx Example: http://articles.techrepublic.com.com/5100-10878_11-6167361.html |
||||
|
|
|
Besides System.Diagnostics.StopWatch also check this link: The Multimedia Timer for the .NET Framework. HTH |
|||
|
|
|
I have found a method which works slightly more precisely then StopWatch, PerformanceCounters and every other implementation I come across and does not require Platform Invoke or otherwise. See Obtaining Microsecond Precision using .Net without Platform Invoke Let me know if you find otherwise! |
|||
|
|