.NET Runtime 2.0 Error Reporting # 5000 例外錯誤處理 .NET Runtime 2.0 Error Reporting # 5000 例外錯誤處理
  .NET       ez      2011-11-29

如果出現.NET Runtime 2.0 Error Reporting # 5000 就需要設定例外處理,才能夠抓取到Error資訊!

AppDomain.CurrentDomain.UnhandledException += new  UnhandledExceptionEventHandler(WorkerThreadHandler);

public void WorkerThreadHandler(object sender, UnhandledExceptionEventArgs args)
{
            if (!(args.ExceptionObject is ThreadAbortException))
            {
                Exception exc = args.ExceptionObject as Exception;
                MessageBox.Show(exc.ToString());
            }
}

標籤:   .NET

我要留言