IEqualityComparer for SequenceEqual

后端 未结 2 1898
借酒劲吻你
借酒劲吻你 2020-11-29 07:34

In C#, is there a IEqualityComparer that uses the SequenceEqual method to determine equality?

2条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-29 08:03

    There is no such comparer in .NET Framework, but you can create one:

    public class IEnumerableComparer : IEqualityComparer>
    {
        public bool Equals(IEnumerable x, IEnumerable y)
        {
            return Object.ReferenceEquals(x, y) || (x != null && y != null && x.SequenceEqual(y));
        }
    
        public int GetHashCode(IEnumerable obj)
        {
            // Will not throw an OverflowException
            unchecked
            {
                return obj.Where(e => e != null).Select(e => e.GetHashCode()).Aggregate(17, (a, b) => 23 * a + b);
            }
        }
    }
    

    In the above code, I iterate over all items of the collection in the GetHashCode. I don't know if it's the wisest solution but this what is done in the internal HashSetEqualityComparer.

提交回复
热议问题