Execution time

DateTime.UtcNow

  • very fast
  • bad resolution (10 milliseconds)
DateTime begin = DateTime.UtcNow;
...
DateTime end = DateTime.UtcNow;
Console.WriteLine("Execution time: " + (end-begin).TotalMilliseconds + " ms.");

Stopwatch

  • little bit slower
  • can be unreliable on a PC with multiple processors or on processors with unconstant clock speed!
Stopwatch watch = new Stopwatch();
watch.Start();
...
watch.Stop();
Console.WriteLine("Execution time: " + watch.Elapsed.TotalMilliseconds + " ms.");

Process.TotalProcessorTime

  • measures only processors time kept by process
  • if process is keeping multiple processors busy, the time of each processor will be added
TimeSpan begin = Process.GetCurrentProcess().TotalProcessorTime;
...
TimeSpan end = Process.GetCurrentProcess().TotalProcessorTime;
Console.WriteLine("Execution time: " + (end - begin).TotalMilliseconds + " ms.");

References

programming/csharp/executiontime.txt · Last modified: 2018-06-21 19:48 (external edit)
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0