Kevin

Kevin

  • NA
  • 1
  • 0

Exception Handling

Dec 18 2005 1:57 AM
The following is for a windows application. If I was to cause a button click to throw an exception i.e. private void button6_Click(object sender, System.EventArgs e) { //simulate a crash by throwing an exception throw new Exception ("Simulated Crash"); } where would I catch this other than in this function? I tried catching it in the Form's main fuction : static void Main() { try { Application.Run(new Form1()); } catch (Exception ex) { Console.WriteLine (ex.ToString()); } } but it seems like I can't catch it there.