比较2个强类型列表的通用方法

时间:2013-07-25 10:07:13

标签: c# .net linq generics compare

我有以下方法比较2个列表(相同类型)并返回差异。如何使此方法接受任何类型的列表?

var differences = list1.Where(x => list2.All(x1 => x1.Name != x.Name))
            .Union(list2.Where(x => list1.All(x1 => x1.Name != x.Name)));

2 个答案:

答案 0 :(得分:2)

要获得两组之间的差异(具有顺序独立性和多重性独立性),您可以使用:HashSet<T>.SymmetricExceptWith(IEnumerable<T>)

public static IEnumerable<T> GetSymmetricDifference<T>(IEnumerable<T> list1, IEnumerable<T> list2, IEqualityComparer<T> comparer = null)
{
    HashSet<T> result = new HashSet<T>(list1, comparer);
    result.SymmetricExceptWith(list2);
    return result;
}

在您的情况下,使用它:

var difference = GetSymmetricDifference(list1, list2, new MyComparer());

使用自定义比较器:

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

    public int GetHashCode(MyType obj)
    {
        return obj.Name == null ? 0 : obj.Name.GetHashCode();
    }
}

答案 1 :(得分:0)

这个怎么样:

var differences = list1.Except(list2).Union(list2.Except(list1));