コード例 #1
0
ファイル: Setup.cs プロジェクト: m4mm0n/OpenFTP
 private static void CurrentDomain_FirstChanceException(object sender, System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs e)
 {
     using (var f = new frmException(e.Exception))
     {
         f.ShowDialog();
     }
 }
コード例 #2
0
 private void button3_Click(object sender, EventArgs e)
 {
     using (var fr = new frmException(exception.InnerException, true))
         fr.ShowDialog();
 }