文件名称:SwallowExceptions:AC#Fody插件,允许您注释方法[SwallowExceptions]以将方法内容包装在try catch块中
文件大小:20KB
文件格式:ZIP
更新时间:2024-06-13 17:01:43
C#
吞下异常 AC#Fody插件,允许您使用[SwallowExceptions]属性注释方法,以将方法内容包装在try / catch块中。 努吉特 SwallowExceptions包 PM>安装包SwallowExceptions.Fody 您的密码 public class MyClass { [SwallowExceptions] void MyMethod() { DoSomethingDangerous(); } } 编译什么 public class MyClass { void MyMethod() { try { DoSomethingDangerous(); } catch (Exception exception) {