How can I find out how much time my C# code takes to run?
|
|
Check out the
|
||
|
|
|
|
The
Also, be sure to run your code repeatedly (as many times as is feasible) to get a better average time, as well as to reduce the effects of fluctuations in CPU load. |
||
|
|
|
|
As others have said, the
If you're interested in benchmarking, I have the MiniBench project which I must get round to working on again at some point - it's not quite where I want it to end up, but it's a start. I talk more about what I want to achieve with it in this blog post. |
||||
|
|
|
Check out the Stopwatch class. |
||
|
|
|
|
I recommend using a profiling tool such as ANTS to test the speed of your application and find slow code. This will allow you to do a line-by-line test of execution times. |
||
|
|
|
|
What's wrong with the Visual Studio profiler? Have you tried that? |
||
|
|
|
|
If you want simple, just put an N-iteration loop around it and use StopWatch (or just a wristwatch) and divide by N. For example, if you want microseconds, let N = 1000000. If you're worried about the overhead of the loop, just unroll it by a factor of 10. |
||
|
|
