我在for循环中有一个for each循环,for each循环检查当前行中某列中的值是否存在于数组中,如果存在我想在for循环中做什么,如果它不存在我想要继续 for 循环
for i = 0 To DataGridView1.RowCount - 1
For Each id In IDs
If (DataGridView1.Item(1, i).Value <> id) Then
'continue the for loop, by continue i mean using continue statement and not executing the outer for loop for this case
End If
Next
'do for loop things
Next
我要做的是对具有特定 id 的行进行计算,并跳过具有不在数组中的 id 的行。