Find infinite loop in progress?
Is there a way to find out the current execution of the code to find out the infinite loop?
开发者_StackOverflowI have the application running with the current source. I'm attached with the visual studio debugger. I just need to know where the code is currently at so that I can debug it further.
If you're running it from Visual Studio, you can pause the execution with the 'pause' button in the code page. The current line will be in green.
精彩评论