In the below code, What is the significance of the statement "e.Handled=true".
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e){ if (e.ExceptionObject is DivideByZeroException) { MessageBox.Show("You are trying to divide a number by 0. Please provide value greater than 0."); e.Handled = true; }}
Your Test Score: 0 / 0
|