ADO DOT NET
Centurion
- Joined
- Dec 20, 2006
- Messages
- 160
Visual Basic:
Dim SStr() As String = something...
For MyLoop As Integer = 0 To SStr.Length - 1
Next
You see that I use a loop to go through all arrays of SStr.
Is it possible to convert this code so I can use For Each instead?
I don't know how to use For Each for this one.
Thanks