检查未处理的异常 .NET 4
我会知道我没有处理的异常是什么,即使目前在我的 Winform 程序中没有抛出任何异常。
有没有办法与.Net 4 相关?
我已经对此进行了一些研究,但我发现的所有软件都不支持.NET4。
更新:我需要一种方法来知道哪些是我没有处理的异常。就像 Exception-Hunter 但它不支持 .NET 4更多的。 谢谢
编辑:更新的问题
I would know what are the Exception that i didnt handle , even if doesn't throw any exception at the moment, in my Winform Program.
Is there a way to do with .Net 4?
I already made some research about this, but all software that i found doesnt support .NET4.
Update: I need a way to know Which are the Exception that i Didnt Handle. Just like Exception-Hunter but it doesnt support .NET 4 more.
Thanks
Edit: Updated Question
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,除非您从不调用任何第三方代码(包括 .NET 框架方法),否则没有确定的方法可以满足您的要求。与 Java 不同,.NET 没有“受检查”异常的概念。因此,要 100% 确定地了解给定代码段可能引发哪些异常的唯一方法就是阅读代码。
Unfortunately, there is no sure way do what you are asking, unless you never call any third-party code, including .NET framework methods. Unlike Java, .NET has no concept of "checked" exceptions. So, the only way to know with 100% certainty what exceptions a given piece of code can throw is to read the code.