0

I have a legacy application where the method calls go several layers deep:

public void A()
{
    B();
}

public void B()
{
    C();
    D();
}

public void C()
{
    E();
}

And so on and so forth. Are there any plugins that can show me graphically the methods that are called, so that I can see something like this:

A
-> B
    -> C
    -> D
        -> E
5
  • 1
    Isn't the debugger itself enough for this?
    – GETah
    Commented Mar 19, 2012 at 22:46
  • In design or debug mode? Commented Mar 19, 2012 at 22:47
  • 3
    Debug | Windows | Call Stack ? Commented Mar 19, 2012 at 22:47
  • In design mode. I know I can do it in debug mode, but I was wondering if there is anything similar for design mode.
    – Daniel T.
    Commented Mar 19, 2012 at 22:48
  • 3
    'View Call Hierarchy Ctrl+K, Ctrl+T', then 'Calls from/to X' Commented Mar 19, 2012 at 22:48

1 Answer 1

1

I would suggest looking at Microsoft's CLR Profiler

Not the answer you're looking for? Browse other questions tagged or ask your own question.