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.
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