检查未处理的异常 .NET 4

发布于 2024-12-21 18:58:20 字数 306 浏览 2 评论 0原文

我会知道我没有处理的异常是什么,即使目前在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转角预定愛 2024-12-28 18:58:20

不幸的是,除非您从不调用任何第三方代码(包括 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文