So say I have an array which contains an arbitrary number of strings:
Now I want to test someStr for membership to someArray.
Is there some method like this I can use?
or maybe:
Thanks.
Code:
Dim someArray() As String Dim someStr As String Dim c as Boolean
Is there some method like this I can use?
Code:
c = someStr.IsMemeber(someArray)
Code:
c = someArray.Contains(someStr)
Comment