c# - string array.Contains? - Stack Overflow
.NET 2 string[] myStrings = GetMyStrings(); string test = "testValue"; How can I verify if myStrings contains or not test? ... In .NET 2.0, you could do the following if you want the index: int index = Array.FindIndex( myStrings, delegate(string s) { retu...