using System; public interface IEqualityComparer { bool Equals (T x, T y); int GetHashCode (T x); }