I have something like this:
void MethodToBreak()
{
    // do something
    if(something)
    {
        MethodThatBreaks();
        return;
    }
    // do something
}
void MethodThatBreaks()
{
    // do something
}
So, I was wondering: is it possible to break execution from: MethodThatBreaks()? Then, I would have: if(something) MethodThatBreaks(); and if the condition inside if is true, nothing after that row would be executed.
NOTE: I know it's possible with else in this case, but I don't want that.