Hi,
Is there a statment like Exit For, except instead of exiting the loop it just moves to the next item.
For example:
For Each I As Item In Items
If I = x Then
'Move to next item
End If
' Do something
Next
I know could simply add an Else to the If statment so it would read as follows:
For Each I As Item In Items
If I = x Then
'Move to next item
Else
' Do something
End If
Next
Just wondering if there is a way to jump to the next item in the Items List. Im sure most will proberly be asking why not ust use the else statment, but to me wrapping the "Do Something" code seems to be less readable especcially, when there is a lot more code.