我正在调试代码中的异常,并且我的调试器设置为在出现异常时中断。
我希望我的调试会话在我的代码的某个部分而不是另一个上进行异常中断,你知道我可以在我的代码中编写一个参数(或其他)来告诉调试器不要异常中断在这部分代码上?
我调试的异常是API的同类型异常,无法按类型过滤。
谢谢
ps:请注意我知道“调试/异常”,但这在我的情况下是没有用的,因为我不想过滤某种类型的异常,只在代码的一部分中过滤它们。
例子:
#region don't want to break at exception
Try
{
//I don't want the debugger to break here
ApiMethodThatThrowException();
}
Catch(Exception){}
#endregion
#region want to break at exception
Try
{
//I want the debugger to break here
ApiMethodThatThrowException();
}
Catch(Exception){}
#endregion