2,893 questions
It offers this possibility:
Dim numbers As New List(Of Integer) From {100, 330, 610, 610, 700}
Dim index = numbers.FindIndex(Function(n) n > 600)
If index >= 0 Then
' found
'...
End If
The list does not have to be sorted.