在 C# 中,是否有IEqualityComparer<IEnumerable>
使用该SequenceEqual
方法确定相等性的方法?
user2037593
问问题
5530 次
2 回答
25
.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
。
于 2013-02-03T18:27:24.013 回答
1
根据Cédric Bignon 的回答创建了一个 NuGet 包:
组装包: https ://www.nuget.org/packages/OBeautifulCode.Collection/
仅代码文件包:https ://www.nuget.org/packages/OBeautifulCode.Collection.Recipes.EnumerableEqualityComparer/
var myEqualityComparer = new EnumerableEqualityComparer<string>();
于 2019-06-01T18:02:25.747 回答