Possible Duplicate:
Breaking out of a nested loop
I have two for loops like this:
for (...)
{
// some code
for (...)
{
if (something)
{
// go to the outer for loop <<<<<<
}
}
// some more code here
}
If I use continue
it will go to the inner loop. I want it to go to the outer one.
How can I do that?