Meli
Meli

Reputation: 151

visual tool for debugging recursive code

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

Answers (2)

Samuel
Samuel

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 Parallel Debugging

Upvotes: 7

James
James

Reputation: 7198

I think your looking for "Call Stack" in Visual Studio. Other IDEs have similar functionality.

Upvotes: 3

Related Questions