Exemplo n.º 1
0
 public static DialogResult Show(Exception e)
 {
     using (var bugReportForm = new BugReportForm())
     {
         bugReportForm.Exception = e;
         return(bugReportForm.ShowDialog());
     }
 }
Exemplo n.º 2
0
 static DialogResult ShowThreadExceptionDialog(string title, Exception e)
 {
     return(BugReportForm.Show(e));
 }