vote up 6 vote down star
1

Given the following simple example:

    List<string> list = new List<string>() { "One", "Two", "Three", "three", "Four", "Five" };

    CaseInsensitiveComparer ignoreCaseComparer = new CaseInsensitiveComparer();

    var distinctList = list.Distinct(ignoreCaseComparer as IEqualityComparer<string>).ToList();

It appears the CaseInsensitiveComparer is not actually being used to do a case-insensitive comparison.

ie. distinctList contains the same number of items as list. Instead I would expect"Three" and "three" be considered equal.

Am I missing something or is this an issue with the Distinct operator?

flag

4 Answers

vote up 13 vote down check

StringComparer does what you need:

List<string> list = new List<string>() {
    "One", "Two", "Three", "three", "Four", "Five" };

var distinctList = list.Distinct(
    StringComparer.CurrentCultureIgnoreCase).ToList();

(or invariant / ordinal / etc depending on the data you are comparing)

link|flag
That's great, thanks. – Ash Nov 12 '08 at 6:45
damn just found this on google saerching for case invariant distinct linq, awesome – Shawn Jan 12 at 4:53
vote up 1 vote down

I notice in "LINQ Pocket Reference" (O'Reilly) it says:

1.12.4. Distinct Distinct returns the input sequence stripped of duplicates. Only the default equality comparer can be used for equality comparison.

I'm wondering why then Distinct() provides an overload accepting an IEqualityComparer?

link|flag
To let you to implement an equility comparer? – yapiskan Nov 12 '08 at 6:40
Right, but then that wouldn't be the Default Equality operator (ie using the parameterless overload), and according to the above statement can't be used. – Ash Nov 12 '08 at 6:57
You would have to be more specific. Perhaps they are saying that in Linq you can't supply one, but when you use the extension methods (which Linq also uses), you can. – Andrew Mar 27 at 23:20
vote up 1 vote down

[See Marc Gravells answer if you want the most concise approach]

After some investigation and good feedback from Bradley Grainger I've implemented the following IEqualityComparer. It suports a case insensitive Distinct() statement (just pass an instance of this to the Distinct operator) :

class IgnoreCaseComparer : IEqualityComparer<string>
{
    public CaseInsensitiveComparer myComparer;

    public IgnoreCaseComparer()
    {
        myComparer = CaseInsensitiveComparer.DefaultInvariant;
    }

    public IgnoreCaseComparer(CultureInfo

myCulture) { myComparer = new CaseInsensitiveComparer(myCulture); }

    #region IEqualityComparer<string> Members

    public bool Equals(string x, string y)
    {
        if (myComparer.Compare(x, y) == 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }

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

    #endregion
}
link|flag
1  
You simply don't need this. See my reply. – Marc Gravell Nov 12 '08 at 6:43
Yes, your reply arrived just as I was clicking "Post Your Answer". – Ash Nov 12 '08 at 6:48
They were certainly with <20 seconds of each other, I recall. Still, implementing something like IEqualityComparer<T> is still a useful exercise, if only for understanding how it works... – Marc Gravell Nov 12 '08 at 6:50
Thanks again, I'll let this this answer live then, unless anyone strongly objects. – Ash Nov 12 '08 at 6:54
This sample fails when initialized for the tr-TR culture if the current culture is en-US, because GetHashCode will report different values for I (U+0049) and ı (U+0131), whereas Equals will consider them equal. – Bradley Grainger Mar 26 at 23:34
vote up 1 vote down

Here is a far simpler version.

List list = new List() { "One", "Two", "Three", "three", "Four", "Five" };

var z = (from x in list select new { item = x.ToLower()}).Distinct();

z.Dump();

link|flag

Your Answer

Get an OpenID
or

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