Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to use HashSet.Contains() method in case -insensitive mode?

share|improve this question
1  
One sidenode: when a 'normal' HashSet<string> (case sensitive) is created, it's impossible to create a contains method that is efficient. This because the hashes of the elements are created when they are added to the HashSet. And internally the contains method 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

4 Answers

up vote 40 down vote accepted

You can create the HashSet with a custom comparer:

HashSet<string> hs = new HashSet<string>(StringComparer.OrdinalIgnoreCase);

hs.Add("Hello");

Console.WriteLine(hs.Contains("HeLLo"));
share|improve this answer
5  
+1 Because you use Ordinal instead of InvariantCulture. The .NET guidelines advice us not to use InvariantCulture in most cases (see: msdn.microsoft.com/en-us/library/ms973919.aspx). – Steven Apr 19 '10 at 14:08
1  
CurrentCultureIgnoreCase is usually the better choice. – Hans Passant Apr 19 '10 at 15:44

You need to create it with the right IEqualityComparer:

HashSet<string> hashset = new HashSet<string>(StringComparer.InvariantCultureIgnoreCase);
share|improve this answer

You should use the constructor which allows you to specify the IEqualityComparer you want to use.

HashSet<String> hashSet = new HashSet<String>(StringComparer.InvariantCultureIgnoreCase);

The StringComparer object provides some often used comparer as static properties.

share|improve this answer

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 IEqualityComparer<T> and then you can use a .Contains overload. Here is an example using a string (again, other answers have shown that there is already a string comparer you can use that meets your needs). Many methods surrounding IEnumerable<T> have overloads that accept such comparers, so it's good to learn how to implement them.

class CustomStringComparer : IEqualityComparer<string>
{
    public bool Equals(string x, string y)
    {
        return x.Equals(y, StringComparison.InvariantCultureIgnoreCase);
    }

    public int GetHashCode(string obj)
    {
        return obj.GetHashCode();
    }
}

And then use it

bool contains = hash.Contains("foo", new CustomStringComparer());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.