无法在Winforms中捕获未处理的异常

时间:2012-06-02 14:38:15

标签: c# .net winforms exception

我正在尝试捕获C#Windows窗体应用程序中的所有无法处理的异常。我已将以下代码添加到Program.cs文件中,但未捕获异常,我得到NullReferenceException等异常。 我做错了什么?

static void Main()
{ 
    System.Windows.Forms.Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
    System.Windows.Forms.Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(OnGuiUnhandedException);
    AppDomain.CurrentDomain.UnhandledException += OnUnhandledException;
    var form = new MainForm();
    form.ShowDialog();
}

private static void HandleUnhandledException(Object o)
{
    // TODO: Log it!
    Exception e = o as Exception;
    if (e != null)
    {
    }
}

private static void OnUnhandledException(Object sender, UnhandledExceptionEventArgs e)
{
    HandleUnhandledException(e.ExceptionObject);
}

private static void OnGuiUnhandedException(object sender, System.Threading.ThreadExceptionEventArgs e)
{
    HandleUnhandledException(e.Exception);
}

编辑:当程序在Visual Studio外部运行时,我能够捕获异常,但是当从visual studio进行调试时我无法捕获Exception。我知道调试是为了删除错误。我应该运行程序在构建模式下捕获异常吗?

3 个答案:

答案 0 :(得分:2)

尝试在VS中禁用异常捕获,因为它似乎在它到达处理程序之前捕获异常。

调试>例外......>取消选中用户未处理的公共语言运行时异常。

答案 1 :(得分:0)

如果您使用的是64位Windows,则可能需要检查Debug-> Exceptions并检查是否抛出了CLR异常。

Silent failures in C#, seemingly unhandled exceptions that does not crash the program

答案 2 :(得分:0)

您订阅的事件仅提供检查例外的方法;它们并不意味着你可以抑制或从异常中恢复。

来自AppDomain.UnhandledException

  

此事件提供未捕获异常的通知。它允许应用程序在系统默认处理程序向用户报告异常并终止应用程序之前记录有关异常的信息。

如果要在记录后从异常中恢复,则需要在代码周围使用try-catch块。