| interfaces/reproductions/IEqualityComparer.cs - A reproduction of the generic interface IEqualityComparer<T>. | Lecture 11 - slide 15 : 21 Program 2 |
using System;
public interface IEqualityComparer <T>{
bool Equals (T x, T y);
int GetHashCode (T x);
}