.NET 2
string[] myStrings = GetMyStrings();
string test = \"testValue\";
How can I verify if myStrings
contains test
In .NET 2.0, you could do the following if you want the index:
int index = Array.FindIndex(
myStrings,
delegate(string s) { return s.Equals(test); }
);
index
will be -1
if myStrings
does not contain test
.
If you merely want to check for existence:
bool exists = Array.Exists(
myStrings,
delegate(string s) { return s.Equals(test); }
);