I have two collections of type ICollection; c1 and c2. I'd like to find the set of items that are in c2 that are not in c1 where the heuristic for equality is the Id property on MyType.

What is the quickest way to perform this in C#.

Edit: C# version = 3.0

link|improve this question

If the vC# = 3.5 > use Linq – serhio Feb 3 '10 at 17:11
feedback

3 Answers

up vote 18 down vote accepted

Use Enumerable.Except and specifically the overload that accepts an IEqualityComparer<MyType>:

var complement = c2.Except(c1, new MyTypeEqualityComparer());

Note that this produces the set difference and thus duplicates in c2 will only appear in the resulting IEnumerable<MyType> once. Here you need to implement IEqualityComparer<MyType> as something like

class MyTypeEqualityComparer : IEqualityComparer<MyType> {
    public bool Equals(MyType x, MyType y) {
        return x.Id.Equals(y.Id);
    }

    public int GetHashCode(MyType obj) {
        return obj.Id.GetHashCode();
    }
}
link|improve this answer
2  
Brilliant...... – Ben Feb 3 '10 at 17:17
feedback

If using C# 3.0 + Linq

var complement = from i2 in c2
                 where c1.FirstOrDefault(i1 => i2.Id == i1.Id) == null
                 select i2;

iterate complement to get the items

link|improve this answer
This will use nested loops and is very inefficient. – Samuel Neff Feb 3 '10 at 17:36
feedback
public class MyTypeComparer : IEqualityComparer<MyType>
{
    public MyTypeComparer()
    {    
    }

    #region IComparer<MyType> Members

    public bool Equals(MyType x, MyType y)
    {
        return string.Equals(x.Id, y.Id);
    }

    public int GetHashCode(MyType obj)
    {
        return base.GetHashCode();
    }

    #endregion     
}

then using Linq

c3 collection = new collection().add(c1);
c3.add(c2);
var items = c3.Distinct(new MyTypeComparer());

You could aslo do it using generics and predicates. if you need a sample let me know.

link|improve this answer
won't Distinct just filter out the duplicates leaving you with c1 union c2, instead of c1- c2? – luke Feb 3 '10 at 17:40
feedback

Your Answer

 
or
required, but never shown

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