mscorlib(4.0.0.0) API with additions
IEqualityComparer.cs
2 
3 namespace System.Collections
4 {
6  [ComVisible(true)]
7  [__DynamicallyInvokable]
8  public interface IEqualityComparer
9  {
17  [__DynamicallyInvokable]
18  new bool Equals(object x, object y);
19 
24  [__DynamicallyInvokable]
25  int GetHashCode(object obj);
26  }
27 }
Definition: __Canon.cs:3
new bool Equals(object x, object y)
Determines whether the specified objects are equal.
Defines methods to support the comparison of objects for equality.
int GetHashCode(object obj)
Returns a hash code for the specified object.