mscorlib(4.0.0.0) API with additions
IEqualityComparer.cs
2 {
5  [__DynamicallyInvokable]
6  public interface IEqualityComparer<in T>
7  {
13  [__DynamicallyInvokable]
14  bool Equals(T x, T y);
15 
20  [__DynamicallyInvokable]
21  int GetHashCode(T obj);
22  }
23 }
Defines methods to support the comparison of objects for equality.
bool Equals(T x, T y)
Determines whether the specified objects are equal.
int GetHashCode(T obj)
Returns a hash code for the specified object.