.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:
If you merely want to check for existence:
|
|||
|
|
|
Here's a .NET 2.0 compliant approach. Using C# Approach
If you need a case insensitive match use EDIT: with VB.NET 2.0 more effort is required since it doesn't support anonymous delegates. Instead you would need to add a VB.NET Approach
|
|||||||
|
|
Instead of using a static array, you could use a List:
|
|||||||
|
And this will have the best performance ever. :P |
|||||||||||||
|
|
Here is almost the exact same question on msdn. Find String in String Array As others have said you really have two options: 1) Use a list for easier checking 2) Loop through your array to find the string |
|||
|
|
|
you can use Array.BinarySearch as described below.
|
|||
|
I have found an elegant answer at the page here http://www.dotnettoad.com/index.php?/archives/10-Array.Contains.html. What you have to do in .NET 2.0 is to cast to IList and call Contains method.
|
|||
|
|
|
I assume you want to check if any elements in your array contains a certain value (test). If so you want to construct a simple loop. In fact I think you should click here. |
|||
|
|
|
How about this:
This should work for .Net 2.0 and VB.Net. |
|||||
|