I have an array of strings, with each string being a name. I'm looking for a function that will find the index of a particular name in the array. I looked into Array::IndexOf, but my array is like this:
string names=new string[30];
and it wont work. I could make my own if needed, but it would be a lot better if there was a built in one. Thanks in advance