How to estimate elapsed time of a event

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

I have a click event of a button, it need more time to accomplished the job.
How can I estimate elapsed time it cost?
 
At the beginning of the handler get the time using DateTime.Now.

At the end of the handler, subtract the current DateTime.Now value from the
one you stored in the beginning of the handler.

The resulting TimeSpan can be used to obtain the TotalMilliseconds of the
handler time.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
If you are able to use C#2.0, there is a class specifically for this kind of
thing, System.Diagnostics.StopWatch.

Mark.
 
Back
Top