I need a way to break from the middle of try/catch block without throwing an exception.
Something that is similar to the break and continue in for loops.
Is this possible?
try
{
...........
throw null;//this line just works like a 'break'
...........
}
catch (NullReferenceException)
{
}
catch (System.Exception ex)
{
.........
}