6

some parts of my program are way slow. and I was wondering if there is tool that i can use and for example it can tell me ok running methodA() took 100ms , etc ...or so useful info similar to that.

Steve Townsend
  • 53,498
  • 9
  • 91
  • 140
Bohn
  • 26,091
  • 61
  • 167
  • 254

4 Answers4

12

If you are using Visual Studio Team System there is a builtin profiler in 'Performance Tools'. There is a ton of useful background on this at this blog.

I've found this extremely useful in identifying the 20% of my code that runs 80% of the time, and hence what I should worry about optimizing.

Another simple technique that can be surprisingly effective is to run your release code in the debugger, and interrupt it a few times (10 or so can be enough) while it's in the 'busy' state that you are trying to diagnose. You may find recurring callstack info that directs you to the general area of concern. Again, the 80/20 rule in effect.

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Steve Townsend
  • 53,498
  • 9
  • 91
  • 140
8

The System.Diagnostics namespace offers a helpful class called Stopwatch, which can be used to time parts of your code (think of it as a "poor man's profiler").

This is how you would use it:

Stopwatch stopwatch = new Stopwatch();
stopwatch.Start(); // Start timing

// This is what we want to time
DoSomethingWeSuspectIsSlow();

stopwatch.Stop();
Console.WriteLine("It took {0} ms.", stopwatch.ElapsedMilliseconds);
Martin Törnwall
  • 9,299
  • 2
  • 28
  • 35
  • 3
    or, create a class that implements idisposable, which starts the timer on contruction, stops and writes on dispose. Then you can time any block of code by wrapping it with a using statement! – John Gardner Sep 22 '10 at 21:02
  • 2
    Also make sure that the method has been invoked at least once before timing it, so that you don't measure the time for JIT-compilation. – Fredrik Mörk Sep 22 '10 at 21:05
  • @John Gardner - your construct is also v useful for getting perf timings out of a running Prod system. Accumulate the timings for parts of the workitem with a tag that identifies them, and dump at the end of the workitem. – Steve Townsend Sep 22 '10 at 21:05
3

Those kind of applications are known as "profilers"

Here's one for example: example

Oren A
  • 5,870
  • 6
  • 43
  • 64
2

See our SD C# Profiler. It can provide function timings of the function by itself and/or all of its callees.

Ira Baxter
  • 93,541
  • 22
  • 172
  • 341