Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

6 Answers

up vote 3 down vote accepted

The Stopwatch class is the best precision that you can get, it uses the high frequency timer.
The frequency of the stopwatch depends upon the frequency of the CPU, but its usually in the millions times per second range.

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.

share|improve this answer

System.Diagnostics.Stopwatch is the right class for this degree of granularity in your timing, but make sure you use your Stopwatch object's Elapsed.Ticks property instead of its ElapsedTicks property, as they are two different things.

  • ElapsedTicks (without the dot) refers to the number of ticks of the Stopwatch, and thus needs to be used in concert with Stopwatch.Frequency (which is not the same on all machines) to calculate the elapsed time.
  • Elapsed.Ticks (with the dot) gives the number of Timespan ticks, and is not dependent on the Stopwatch frequency.

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.

On my laptop, Stopwatch runs almost 5 seconds ahead over 24 hours, and this effect is even worse on some other machines.

If you're timing short durations, of course, this effect should not matter much at all.

share|improve this answer
Note that Stopwatch may be inaccurate on a laptop due to power saving measures on the CPU, however a modern Intel i7 or newer wouldn't suffer from this problem. In other words, if you're doing timing on a work PC, things will be much more accurate. – Gravitas Feb 14 '12 at 10:22

Use the Stopwatch class, should do the trick.

share|improve this answer

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

share|improve this answer

Besides System.Diagnostics.StopWatch also check this link: The Multimedia Timer for the .NET Framework. HTH

share|improve this answer

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!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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