In an Array that I have created, I want to be able to look for a specific number, and give me the index of that number.How do I search an Array for a specific number in VB.NET?
Loop through every node in the array and search for it.
For Each s As String in My_Arr
If s.Contains(';14';) Then
...
End If
Next
Dane
No comments:
Post a Comment