up vote 16 down vote favorite
4
share [g+] share [fb]

Is it ever OK to use Environment.TickCount to calculate time spans?

int start = Environment.TickCount;
// Do stuff
int duration = Environment.TickCount - start;
Console.WriteLine("That took " + duration " ms");

Because TickCount is signed and will rollover after 25 days (it takes 50 days to hit all 32 bits, but you have to scrap the signed bit if you want to make any sense of the math), it seems like it's too risky to be useful.

I'm using DateTime.Now instead. Is this the best way to do this?

DateTime start = DateTime.Now;
// Do stuff
TimeSpan duration = DateTime.Now - start;
Console.WriteLine("That took " + duration.TotalMilliseconds + " ms");
link|improve this question

6  
As an unrelated aside, if you DO use DateTime for Date-related math calculations, always use DateTime.UtcNow as DateTime.Now is susceptible to Daylight Savings Time...your calculations could be off by a hour, or worse, negative numbers. – Scott Hanselman Jul 3 '09 at 7:04
@Scott: Thought it's worth mentioning: even with UtcNow, there is the issue of scheduled NTP synchronizations: not that rarely, system time gets changed by an order of 10 seconds after these updates (on my PC). – Groo Sep 30 '11 at 12:13
feedback

10 Answers

up vote 27 down vote accepted

Use Stopwatch class. There is a decent example on msdn: http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.aspx

    Stopwatch stopWatch = Stopwatch.StartNew();
    Thread.Sleep(10000);
    stopWatch.Stop();
    // Get the elapsed time as a TimeSpan value.
    TimeSpan ts = stopWatch.Elapsed;
link|improve this answer
1  
The Stopwatch class is only available in .NET Framework 2.0 and upwards. In the older versions you would use the TickCount, possibly combined with a TimeSpan to check if you had crossed the 25 day boundary. – Rune Grimstad Oct 28 '08 at 14:06
2  
Just curious, how many people still use the 1.1 BCL? Even Mono supports 3.5. – Dykam Jul 13 '09 at 21:55
In earlier versions you'd use p/invoke-calls marked safe and msdn.microsoft.com/en-us/library/ms901807.aspx, not TickCount. – Henrik Feb 18 '11 at 7:33
feedback

You probably want System.Diagnostics.StopWatch.

link|improve this answer
feedback

Use

System.Diagnostics.Stopwatch

It has a property called

EllapsedMilliseconds
link|improve this answer
feedback

Why are you worried about rollover? As long as the duration you are measuring is under 24.9 days and you calculate the relative duration, you're fine. It doesn't matter how long the system has been running, as long as you only concern yourself with your portion of that running time (as opposed to directly performing less-than or greater-than comparisons on the begin and end points). I.e. this:

 int before_rollover = Int32.MaxValue - 5;
 int after_rollover = Int32.MinValue + 7;
 int duration = after_rollover - before_rollover;
 Console.WriteLine("before_rollover: " + before_rollover.ToString());
 Console.WriteLine("after_rollover: " + after_rollover.ToString());
 Console.WriteLine("duration: " + duration.ToString());

correctly prints:

 before_rollover: 2147483642
 after_rollover: -2147483641
 duration: 13

You don't have to worry about the sign bit. C#, like C, let's the CPU handle this.

This is a common situation I've run into before with time counts in embedded systems. I would never compare beforerollover < afterrollover directly, for instance. I would always perform the subtraction to find the duration that takes rollover into account, and then base any other calculations on the duration.

link|improve this answer
feedback

I use Environment.TickCount because:

  1. The Stopwatch class is not in the Compact Framework.
  2. Stopwatch uses the same underlying timing mechanism as TickCount, so the results won't be any more or less accurate.
  3. The wrap-around problem with TickCount is cosmically unlikely to be hit (you'd have to leave your computer running for 27 days and then try to measure a time that just happens to span the wrap-around moment), and even if you did hit it the result would be a huge negative time span (so it would kind of stand out).

That being said, I would also recommend using Stopwatch, if it's available to you. Or you could take about 1 minute and write a Stopwatch-like class that wraps Environment.TickCount.

BTW, I see nothing in the Stopwatch documentation that mentions the wrap-around problem with the underlying timer mechanism, so I wouldn't be surprised at all to find that Stopwatch suffers from the same problem. But again, I wouldn't spend any time worrying about it.

link|improve this answer
Well, at least #1 and #3 are right. – MusiGenesis Mar 31 '10 at 22:49
1  
#3 really isn't right, Matthews answer has a better explanation. It's not about relative times near the wraparound, the wraparound is only a problem if you measure times longer than the twenty something days. – Freed Apr 20 '10 at 13:22
#3 is plain wrong even, this is very much an issue if you run anything that could be used as a service on a server, or even applications on a terminal server. Even my home computer sometimes goes on for two or more months without a reboot (not sure how standby and hibernation act on the ticks, but I suspect that they don't reset them). – Lucero Sep 27 '10 at 11:59
@Lucero and Freed: you definitely should not be using Stopwatch (or TickCount, for that matter) to measure timespans that long, anyway. While highly granular, Stopwatch has very poor long-term accuracy, getting off by as much as 5-10 seconds (not milliseconds) per day. – MusiGenesis Sep 27 '10 at 13:14
1  
Sure was! I wanted to share so other will not be bitten by this. – usr Jan 14 '11 at 22:53
show 3 more comments
feedback

If you're looking for the functionality of Environment.TickCount but without the overhead of creating new Stopwatch objects, you can use the static Stopwatch.GetTimestamp() method (along with Stopwatch.Frequency) to calculate long time spans. Because GetTimestamp() returns a long, it won't overflow for a very, very long time (over 100,000 years, on the machine I'm using to write this). It's also much more accurate than Environment.TickCount which has a maximum resolution of 10 to 16 milliseconds.

link|improve this answer
feedback

You should use the Stopwatch class instead.

link|improve this answer
feedback

Environment.TickCount is based on GetTickCount() WinAPI function. It's in milliseconds But the actual precision of it is about 15.6 ms. So you can't measure shorter time intervals (or you'll get 0)

DateTime.Ticks is based on GetSystemTimeAsFileTime() WinAPI function. It's in 100s nanoseconds (tenths of microsoconds). The actual precision of DateTime.Ticks depends on the system. On XP, the increment of system clock is about 15.6 ms, the same as in Environment.TickCount. On Windows 7 it's precision is 1 ms (while Environemnt.TickCount's is still 15.6 ms)

Stopwatch is based on QueryPerformanceCounter() WinAPI function (but if high-resolution performance counter is not supported by your system, DateTime.Ticks is used)

Before using StopWatch notice two problems:

  • it can be unreliable on multiprocessor systems (see MS kb895980, kb896256)
  • it is unreliable if CPU frequency varies (read this article)

You can evaluate the precision on your system with simple test:

static void Main(string[] args)
{
    const int Counts = 3500000;
    long x = DateTime.UtcNow.Ticks;
    int k;
    for (int i = 0; i < Counts; i++) ;
    long y = DateTime.UtcNow.Ticks;

    int xx = Environment.TickCount;
    for (int i = 0; i < Counts; i++) ;
    int yy = Environment.TickCount;

    Stopwatch sw = new Stopwatch();
    sw.Start();
    for (int i = 0; i < Counts; i++);
    sw.Stop();
    long yyy = sw.ElapsedTicks;

    Console.WriteLine("DateTime:\t{0} ms", (y-x)/(10000.0));
    Console.WriteLine("Environment:\t{0} ms", (yy - xx));
    Console.WriteLine("StopWatch:\t{0} ms", (yyy * 1000.0)/ Stopwatch.Frequency );
    Console.ReadKey();
}

Ajust Counts according to your system speed to see the differences on small intervals (within several milliseconds). And copmile in DEBUG so loops won't got out.

link|improve this answer
feedback

I was going to say wrap it into a stopwatch class, but Grzenio already said the right thing, so I will give him an uptick. Such encapsulation factors out the decision as to which way is better, and this can change in time. I remember being shocked at how expensive it can be getting the time on some systems, so having one place that can implement the best technique can be very important.

link|improve this answer
feedback

For one-shot timing, it's even simpler to write

Stopwatch stopWatch = Stopwatch.StartNew();
...dostuff...
Debug.WriteLine(String.Format("It took {0} milliseconds",
                              stopWatch.EllapsedMilliseconds)));

I'd guess the cosmically unlikely wraparound in TickCount is even less of a concern for StopWatch, given that the ElapsedTicks field is a long. On my machine, StopWatch is high resolution, at 2.4e9 ticks per second. Even at that rate, it would take over 121 years to overflow the ticks field. Of course, I don't know what's going on under the covers, so take that with a grain of salt. However, I notice that the documentation for StopWatch doesn't even mention the wraparound issue, while the doc for TickCount does.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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