The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: Measure Execution Time of Code in C#
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

vinayak SheregarPosted Jan 16, 2014, 2:00 AM
Cool thanks
Hapani ANkitPosted Feb 28, 2013, 2:51 AM
thanks
kevin tunPosted Oct 19, 2012, 5:50 AM
Cool !!! I don't know that there are easy ways to check it. Thanks !!!
kevin tunPosted Oct 19, 2012, 5:50 AM
Cool !!! I don't know that there are easy ways to check it. Thanks !!!
quyen sukiPosted May 6, 2011, 12:16 PM
thanks you so much !
Kavinga GunasekaraeditedPosted Jun 15, 2010, 7:24 AMEdited Jun 15, 2010, 7:26 AM
First this post help to get idea about code execution time. So this seems it counts time for that for loop. In this case can we include this start() and stop() between codes which referring methods from another separate class file. In that case will this stopwatch give execution time for whole process? public Class B { method B1{//some code here} } class A { Stopwatch sw = new Stopwatch(); sw.Start(); B bObj=new B(); for (int i = 0; i <= 1000; i++) { bObj.B1() } sw.Stop(); } In this case it gives the correct execution time? Order of using code correct? (Stop watch start after Creating the object or it should count that time too?) Can you please explain this?
Altaf KhatriPosted Dec 8, 2009, 2:15 PM
Is there a way in Visual studio 2008 to see the execution time for each method. Since visual studio already has a stack trace, the only thing needed is the execution time along with it? http://www.altafkhatri.com/