VB.NET - How to move to next item a For Each Loop? - Stack Overflow
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 ... ... I'd use the Continue statement instead: For Each I As Item In Items If...