我有这样的事情:
try
{
instance.SometimesThrowAnUnavoidableException(); // Visual Studio pauses the execution here due to the CustomException and I want to prevent that.
}
catch (CustomException exc)
{
// Handle an exception and go on.
}
anotherObject.AlsoThrowsCustomException(); // Here I want VS to catch the CustomException.
在代码的另一部分中,我遇到了多次引发CustomException的情况。我想强制 Visual Studio 停止在instance.SometimesThrowAnUnavoidableException()行上中断,因为它掩盖了我有兴趣在CustomException上中断的其他地方的视图。
我尝试了DebuggerNonUserCode但它用于不同的目的。
如何禁用 Visual Studio 仅以某种方法捕获特定异常?