ist possible to have another if statement after the first if statement..
this is just an example
private void button_click(object sender, eventargs e)
try
{
if(age>5||age<=10)
{massagebox.show("young");}
else if(age>10||age<20);
messagebox.show("example");
}
catch(exception)
messagebox.show("error");
//can i have another if statement here???
if(something ==eg)
{messagebox.show("thanks");
}