hello ....
i have nested function and the inner method cause an error i want to return from the parent method , an example:
public void DoSomething()
{
try
{
}catch(exception){}
}
public void DoAnotherThing()
{
try
{
DoSomething();
}catch(exception){}
}
-- i want to go outside DoAnotherThing() method if DoSomething() method cause an error .
can someone help me