Hi,
I'm working in VB.Net. I have a textbox in which the user enters a number of strings seperated by comma. I store this value in a string array like this
Dim Src() As String
Src = txtVals.Text.Split(",".ToCharArray)
I want to search a dynamic string in this array. How could I do it in the fastest way?
Thanks