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