0

I need a plugin for Visual Studio 2008 or some external tool to measure duration of my C# methods. I know about built in profiler, but it measures the whole usage percent that method takes from the application start to the end.

I have a method which is a root. I need to know how long other methods called from the root are executing including all methods in the call stack of this root. Each time the root is called a new result set should be presented.

If I am wrong about VS profiler, please correct me.

UPDATE Freeware is more likely.

brain_pusher
  • 1,507
  • 3
  • 21
  • 31
  • Similar question: http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers – Greg Dec 06 '10 at 20:12

1 Answers1

1

DotTrace profiler does the trick

usr-local-ΕΨΗΕΛΩΝ
  • 26,101
  • 30
  • 154
  • 305