用于SequenceEqual的IEqualityComparer

时间:2013-02-03 18:25:56

标签: c# .net linq iequalitycomparer

在C#中,是否有IEqualityComparer<IEnumerable>使用SequenceEqual方法来确定相等性?

2 个答案:

答案 0 :(得分:22)

.NET Framework中没有这样的比较器,但您可以创建一个:

public class IEnumerableComparer<T> : IEqualityComparer<IEnumerable<T>>
{
    public bool Equals(IEnumerable<T> x, IEnumerable<T> y)
    {
        return Object.ReferenceEquals(x, y) || (x != null && y != null && x.SequenceEqual(y));
    }

    public int GetHashCode(IEnumerable<T> obj)
    {
        // Will not throw an OverflowException
        unchecked
        {
            return obj.Where(e => e != null).Select(e => e.GetHashCode()).Aggregate(17, (a, b) => 23 * a + b);
        }
    }
}

在上面的代码中,我迭代了GetHashCode中集合的所有项目。我不知道这是否是最明智的解决方案,但这是内部HashSetEqualityComparer所做的。

答案 1 :(得分:0)

根据CédricBignon的答案创建了一个NuGet软件包:

组装包: https://www.nuget.org/packages/OBeautifulCode.Collection/

仅代码文件包:https://www.nuget.org/packages/OBeautifulCode.Collection.Recipes.EnumerableEqualityComparer/

var myEqualityComparer = new EnumerableEqualityComparer<string>();