How to skip to next row w/o go through entire for..loop in vb.net
i want to skip to next row in below statement
For iRow = 0 To dsDiscnt.Tables(0).Rows.Count - 1
rowDiscnt = dsDiscnt.Tables(0).Rows(iRow)
If rowdiscnt.Item("x") = "S" Then
'skip to next row
Else
'continue loop
End If
'do something...
Next
how to skip to next row w/o go through the entire loop?
No comments:
Post a Comment