出现错误 0xc0000005 时强制关闭应用程序

发布于 2024-11-01 01:45:07 字数 213 浏览 1 评论 0原文

我有一个 C# WPF 应用程序,显示错误代码为 0xc0000005 的错误对话框。我研究了这个错误代码,发现这是一个访问冲突错误,可能是由多种原因引起的,包括本机代码错误(p/invoke 和第 3 方 dll)。重新启动应用程序似乎可以清除错误,但我希望能够在发生错误时强制应用程序关闭。由于它不是托管代码异常,因此不会在 try catch 块中捕获,因此有什么方法可以在发生此错误时强制应用程序关闭吗?

I have a C# WPF app that display an error dialog with the error code 0xc0000005. I researched this error code and found that it is a access violation error and could be caused by several things including native code errors (p/invoke and 3rd party dlls). Restarting the app seems to clear the error but I want to be able to force the app to close when that error occurs. Since it is not a managed code exception it is not caught in the try catch blocks, is there any way to force the app to close when this error occurs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

太傻旳人生 2024-11-08 01:45:07

您可以通过不同的方式捕获本机异常。使用 Win32ExceptionSEHException 异常类,或者使用 catch 而不指定任何异常类型,

try
{}
catch
{}

请参阅此了解详细信息:你能捕获 C# 代码中的本机异常吗?

使用 Environment.Exit(0);终止您的申请。

You can catch native exceptions in different way. Either using Win32Exception or SEHException exception class or using catch without any exception type specified as

try
{}
catch
{}

Refer this for details: Can you catch a native exception in C# code?

Use Environment.Exit(0); to terminate your application.

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