A ad Nov 7, 2005 #1 I have a click event of a button, it need more time to accomplished the job. How can I estimate elapsed time it cost?
I have a click event of a button, it need more time to accomplished the job. How can I estimate elapsed time it cost?
B Bob Powell [MVP] Nov 7, 2005 #2 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.
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.
G Guest Nov 7, 2005 #3 If you are able to use C#2.0, there is a class specifically for this kind of thing, System.Diagnostics.StopWatch. Mark.
If you are able to use C#2.0, there is a class specifically for this kind of thing, System.Diagnostics.StopWatch. Mark.