Click here to Skip to main content
Licence CPOL
First Posted 17 Jan 2006
Views 59,672
Bookmarked 36 times

A High-Precision Stopwatch for C#

By | 17 Jan 2006 | Article
This article presents a stopwatch class with microsecond-precision for C# that offers split-time and a System.TimeSpan interface.

Sample Image - CS_Stopwatch.jpg

Introduction

This article presents the Performance.Stopwatch class. This class provides a stopwatch-like behavior using kernel32.dll's QueryPerformanceCounter. It offers split time and elapsed time with microsecond precision, and also provides a formatted System.TimeSpan for longer operations. This class is essentially a no-frills stopwatch for measuring the performance of your code.

Background

So I've decided to venture into the world of C#, and needed to see for myself how my application's performance measures up against my C++ code. In order to compare proverbial "apples-to-apples", I needed a high-resolution "stopwatch" to time my code. After some poking around, I saw some alternative ways to do this, however I decided to write my own in order to address the shortcomings of others.

Using the code

The class offers the following public methods:

Method Description
void Start() Starts the stopwatch.
void Stop() Stops the stopwatch.
void Reset() Resets the stopwatch.
TimeSpan GetElapsedTimeSpan() Returns the elapsed time in the form of a System.TimeSpan.
TimeSpan GetSplitTimeSpan() Returns the split time in the form of a System.TimeSpan.
double GetElapsedTimeInMicroseconds() Returns the elapsed time in microseconds.
double GetSplitTimeInMicroseconds() Returns the split time in microseconds.

An example of how to use this class is given below:

Performance.Stopwatch sw = new Performance.Stopwatch();

sw.Start();

for(int i=0; i<10; i++)
{
   System.Threading.Thread.Sleep(100);
   Console.Write("Split time: ");
   Console.Write(sw.GetSplitTimeInMicroseconds().ToString());
   Console.WriteLine(" microseconds.");
}

sw.Stop();

Console.Write("Total process time: ");
Console.Write(sw.GetElapsedTimeSpan().ToString());
Console.WriteLine(".");

This code produces the following output:

Split time: 101403.390654399 microseconds.
Split time: 202629.105095759 microseconds.
Split time: 302948.000374349 microseconds.
Split time: 403266.616287824 microseconds.
Split time: 503606.184584912 microseconds.
Split time: 603955.251295905 microseconds.
Split time: 704231.124346809 microseconds.
Split time: 804552.254546318 microseconds.
Split time: 904863.327601692 microseconds.
Split time: 1005186.13399189 microseconds.
Total process time: 00:00:01.0050000.

Points of Interest

The primary benefit of this class over others is that it provides the user with a System.TimeSpan interface. This makes it easy to display formatted status information or to calculate how long an operation will take to complete. The class also has a built-in calibration such that a sequential call to Start() and Stop() should result in an elapsed time of 0 +/- 0.500 microseconds.

History

  • 17.Jan.2006 - Initial release.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Nitron

Engineer

United States United States

Member

Walter Storm is currently a research engineer for a large aircraft company. Originally from Tunkhannock, PA., he has a B.S. in Aerospace Engineering from Embry-Riddle Aeronautical University[^] with a minor in Psychology, and an M.S. in Systems Engineering from SMU[^]. He has been developing in C++ nearly full time since January of 2001. He is comfortable using MFC and has been known to hack at the STL with the best of them. He tends to be a perfectionist; especially when it comes to GUI design. When not integrating and testing flight control software or hacking at National Instruments'[^] software libraries, you can probably find him driving around in his 1990 2+2 Z32[^] (ok, another pic: Big Grin | :-D ) If by chance he's not in the Z, you may want to check for him here[^].
 
View Walter Storm's profile on LinkedIn.[^]

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberiericzhou20:01 18 Apr '12  
Questionthis is rather lengthy code Pinmemberparvez126:04 16 Mar '12  
GeneralJust Thanks PinmemberExpategghead1:30 8 Dec '09  
Generalsamples Pinmemberalhambra-eidos22:26 27 Oct '09  
Questionthread-safe? Pinmembervadivelkumar23:22 1 Apr '07  
AnswerRe: thread-safe? PinmemberNitron2:33 2 Apr '07  
General.NET 2.0 Pinmemberreinux9:04 24 Jan '06  
GeneralSimilar code PinmemberDrew Noakes23:42 23 Jan '06  
GeneralRe: Similar code PinmemberNitron2:30 24 Jan '06  
General.NET Timing PinprotectorMarc Clifton7:23 17 Jan '06  
GeneralRe: .NET Timing PinmemberNitron7:45 17 Jan '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 17 Jan 2006
Article Copyright 2006 by Nitron
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid