c# – 我可以通过编程方式启用/禁用异常?

前端之家收集整理的这篇文章主要介绍了c# – 我可以通过编程方式启用/禁用异常?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要在调试时能够打破异常,就像在Visual Studio 2008的菜单调试/异常对话框中一样,除了我的程序有很多有效的异常之后,我想要调试的位.

因此,每次使用对话框手动启用和禁用它都可以使用#pragma或其他方法自动执行,因此只能在特定的代码段中发生.

解决方法

通过将DebuggerNonUserCodeAttribute放在你的方法上,做这个事情的唯一方法就是这样做.

这将确保标记方法中的任何异常不会导致异常中断.

很好的解释它here

This is an attribute that you put against a method to tell the debugger “Nothing to do with me guv’. Ain’t my code!”. The gullible debugger will believe you,and won’t break in that method: using the attribute makes the debugger skip the method altogether,even when you’re stepping through code; exceptions that occur,and are then caught within the method won’t break into the debugger. It will treat it as if it were a call to a Framework assembly,and should an exception go unhandled,it will be reported one level up the call stack,in the code that called the method.

代码示例:

public class Foo
{
    [DebuggerNonUserCode]
    public void MethodThatThrowsException()
    {
        ...
    {
}
原文链接:https://www.f2er.com/csharp/94670.html

猜你在找的C#相关文章