System.Collections.Generic.IEqualityComparer<T> public interface IEqualityComparer<T> Documentation Code namespace System.Collections.Generic { public interface IEqualityComparer<in T> { bool Equals(T x, T y); int GetHashCode(T obj); } }