H
Harman Sahni
As per this URL
http://msdn.microsoft.com/library/en-us/vjref98/html/14_14.asp?frame=true
conitnue works on for, while, do... I know it works for foreach as well as
I'm using it somewhere.
My question is how do I "continue" (jump an iteration) of an outermost loop
from an inner loop.
So I have something like this:
foreach(foo)
{
foreach(blah blah)
{
for(i= gooo gooo)
{
continue; (I want this continue to jump an iteration of the
foreach(foo foo)
}
}
}
Thank you in anticipation!
Harman Sahni
http://msdn.microsoft.com/library/en-us/vjref98/html/14_14.asp?frame=true
conitnue works on for, while, do... I know it works for foreach as well as
I'm using it somewhere.
My question is how do I "continue" (jump an iteration) of an outermost loop
from an inner loop.
So I have something like this:
foreach(foo)
{
foreach(blah blah)
{
for(i= gooo gooo)
{
continue; (I want this continue to jump an iteration of the
foreach(foo foo)
}
}
}
Thank you in anticipation!
Harman Sahni