G
G .Net
Hi
I was wondering if there is a way to do the following?
If I have a For Each loop, is there a way "jump out" of the current item so
the next item is processed?
For example, I can do it this way
For Each row As DataRow In MyDataTable
If Not row.Item("col1") = "dont do" Then
' Do some stuff
EndIf
Next
however, I'm wondering if there is another way?
Can anyone help?
G
I was wondering if there is a way to do the following?
If I have a For Each loop, is there a way "jump out" of the current item so
the next item is processed?
For example, I can do it this way
For Each row As DataRow In MyDataTable
If Not row.Item("col1") = "dont do" Then
' Do some stuff
EndIf
Next
however, I'm wondering if there is another way?
Can anyone help?
G