This is what I would like to do:
{ ... if(condition) break; ... }
This works for a loop. I would like something similar
Here just some additional possibilities:
for(..) { continue;//next loop iteration } void mymethod() { ... return; ... }
Probably you should create sub-methods for the problematic block of code were you wanted to use goto and leave the block of code by the usage of return.