I'm trying to skip to the next entry in a for
loop.
For Each i As Item In Items
If i = x Then
Continue For
End If
' Do something
Next
In Visual Studio 2008, I can use "Continue For". But in VS Visual Studio 2003, this doesn't exist. Is there an alternative method I could use?
Well you could simply do nothing if your condition is true.