0
Reply

Exception Handling

Ask a question
Kevin

Kevin

18y
1.4k
1
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.