visual tool for debugging recursive code
when debugging code which's called recursively many times, sometimes it gets d开发者_运维知识库ifficult 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?
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
I think your looking for "Call Stack" in Visual Studio. Other IDEs have similar functionality.
精彩评论