Can I enable/disable breaking on Exceptions programmatically?

后端 未结 5 1014
天涯浪人
天涯浪人 2021-02-08 02:29

I want to be able to break on Exceptions when debugging... like in Visual Studio 2008\'s Menu Debug/Exception Dialog, except my program has many valid exceptions before I get to

5条回答
  •  猫巷女王i
    2021-02-08 03:03

    What about conditional breakpoints? If I understand correctly, you can have a breakpoint fire only when the value of a certain variable or expression is true.

提交回复
热议问题