コード例 #1
0
 static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     UnhandledExceptionForm.Show((Exception)e.ExceptionObject);
 }
コード例 #2
0
        public static void Show(Exception e)
        {
            UnhandledExceptionForm form = new UnhandledExceptionForm(e);

            form.ShowDialog();
        }