「VB.net入門」ContinueでFor Each文のサンプル
サンプルコード
Sub Main()
Dim city() As String = {"tokyo", "oosaka", "yokohama","kawasaki"}
For Each cft As String In city
If cft = "yokohama" Then
Continue For
End If
//some code
Next
End Sub