vote up 0 vote down star

For sake of argument, how could I do this in VB?

foreach foo in bar
{
   if (foo == null)
       break;
   if (foo = "sample")
       continue;
   //more code
   //...
}
flag

80% accept rate
Exit For, Exit Select etc., and you can always fake a break; statement with a GoTo statement and a Line Label. Many people frown on GoTo statements btw. and I found that whenever I do use them they always disappear in the rewrite. – David Rutten Sep 10 at 0:57

1 Answer

vote up 3 vote down check

-- Edit:

You've changed your question since I've answered, but I'll leave my answer here; I suspect a VB.NET programmer will show you how to implement such a loop. I don't want to hurt my poor c# compilers feelings by trying ...

-- Old response:

I believe there is

Continue While
Continue For

and

Exit While
Exit For
link|flag
Your response seems to work. Exit For seems to apply to the VB's For Each. Once I verify, I'll mark your answer. – Blinky Sep 10 at 0:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.