Are Stopwatch.ElapsedTicks and Stopwatch.Elapsed.Ticks always the same?
I just found out that ElapsedTicks in the Stopwatch class doesn’t mean real “ticks” if StopWatch.IsHighResolution is true. Note (if IsHighResolution is True – from Microsoft Connect link (now dead)): Stopwatch ticks are different from DateTime.Ticks. Each tick in the DateTime.Ticks value represents one 100-nanosecond interval. Each tick in the ElapsedTicks value represents the time … Read more