出现错误 0xc0000005 时强制关闭应用程序
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过不同的方式捕获本机异常。使用
Win32Exception
或SEHException
异常类,或者使用 catch 而不指定任何异常类型,请参阅此了解详细信息:你能捕获 C# 代码中的本机异常吗?
使用
Environment.Exit(0);
终止您的申请。You can catch native exceptions in different way. Either using
Win32Exception
orSEHException
exception class or using catch without any exception type specified asRefer this for details: Can you catch a native exception in C# code?
Use
Environment.Exit(0);
to terminate your application.