Try---Catch Function
You will see how and why we use this function.
Types of Errors:
*User Errors => Errors made by the user, such as trying to upload a CV through the profile picture upload panel.
*Software-İnduced Errors=> Bugs in the software and every software has its own bugs.Why do u think the world's giant software companies or game companies are goint through a patch ( update ) ? In order to patch these bugs.
*Login Originated Errors => Errors caused by the developer.Logiv errors made by the software on a process are shown here as an example.
try
{
int number1= int.Parse(textbox1.Text);
int number2 = int.Parse(textbox2.Text);
int result= number1 / number2 ;
MessageBox.Show($"Result : {Result}");
}
catch (DivideByZeroException)
{
MessageBox.Show("Random Number can not divided by Zero..!");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
MessageBox.Show("Oops..Something went wrong..!");Last updated