How to use HashSet.Contains() method in case -insensitive mode?
|
You can create the
|
|||||||||
|
|
You need to create it with the right IEqualityComparer:
|
|||
|
|
|
You should use the constructor which allows you to specify the
The StringComparer object provides some often used comparer as static properties. |
|||
|
|
|
It's not necessary here, as other answers have demonstrated, but in other cases where you are not using a string, you can choose to implement an
And then use it
|
||||
|
|
HashSet<string>(case sensitive) is created, it's impossible to create acontainsmethod that is efficient. This because the hashes of the elements are created when they are added to theHashSet. And internally thecontainsmethod checks the hashes to be efficient. It's not possible to (efficiently) convert an existing hash form 'case sensitive' to 'case insensitive'. – Julian Mar 24 '11 at 10:32