我正在编写一个小库来捕获所有未处理的异常,显示一个小对话框(类似于 NF 的通常对话框),让用户有机会将异常发送给开发人员。为此,我使用 AppDomain 的 UnhandledException-Event ,如下所示:
app.UnhandledException += (object sender, UnhandledExceptionEventArgs e) =>
{
ExceptionHandler handler = new ExceptionHandler((Exception)e.ExceptionObject, ExEntry);
UnhandledExceptionListened(handler);
if (Properties.Settings.Default.ShowStandardExceptionDialog)
{
ExceptionDialog exdialog = new ExceptionDialog(handler);
exdialog.ShowDialog();
}
};
ExceptionHandler 和 ExEntry 是我的库的类。但是:如果发生异常,编译器会跳转到我的 Lambda-Expression,尝试调试第一行代码,然后显示之前发生的错误,而无需处理 lambda 的其余部分。但如果我只写:
app.UnhandledException += (object sender, UnhandledExceptionEventArgs e) =>
{
ExceptionDialog exdialog = new ExceptionDialog(handler);
exdialog.ShowDialog();
};
它完美地工作。有谁知道为什么这不起作用?