Is there a plugin available for Visual Studio .Net that gives a visual representation of the CallStack while debugging (instead of the stacked representation of method calls that is in-built in it)? (I am imagining something similar to an execution path we have in SQL server) This, imho, would help in visualizing the logic flow of the program.
views:
62answers:
2I have been using the CLR Profiler since 1.1 and find it very good at living up to it's name
Simon Wilson
2009-05-28 01:17:44
A:
There are other code profilers that might have what you are looking for. The ones I know of are commercial ($) products. Jetbrains and numega are two examples.
Frankly, I am at a loss to figure out why during execution/at a debug break you are not getting useful information from the call stack.
Note that you can get stack information from the CLR very easily. I suspect there are some free/open source projects out there that have what you want. I'll try to look around
Tim
2009-05-27 18:34:00