How to jump back to the line of code that threw exception in Visual Studio 2010 debugger?

前端 未结 3 1983
孤街浪徒
孤街浪徒 2021-02-19 17:33

Using the Visual Studio 2010 debugger, I am familiar with using the Call Stack window to see where the currently executing function was invoked from.

I\'m working with s

3条回答
  •  孤街浪徒
    2021-02-19 18:14

    If you goto "DEBUG", "Exceptions..." and then select "Thrown" against "Common Language Runtime Exceptions".

    Exceptions

    Then when your code encounters an exception it will stop on the line with the error.

提交回复
热议问题