If I have something like:
Code:
for(int i=0; i<100; i++)
{
   for(int n=0; n<100; n++)
   {
      if(n==i)
         continue;

      ... // more stuff
   }
   ... // more stuff
}
Can I, with a single line of code, make the "continue;" skip to the end of the outer loop (i.e. rather than just the loop it's in).

thanks in advance,

dt