Reputation: 151
when debugging code which's called recursively many times, sometimes it gets difficult to realize which execution of the code you are seeing. Is there any IDE graphic tool which helps to see that with diagrams or something?
Upvotes: 3
Views: 3261
Reputation: 6490
Now this is an very old and already answered topic but Visual Studio has the parallel debugging window which allows you to see the state of your variables. Callstack is typically very hard to track.
See more in Kaycee Anderson's MSDN blog
Here is a reference taken from the blog
Upvotes: 7
Reputation: 7198
I think your looking for "Call Stack" in Visual Studio. Other IDEs have similar functionality.
Upvotes: 3