mscorlib(4.0.0.0) API with additions
IStructuralEquatable.cs
1 namespace System.Collections
2 {
4  [__DynamicallyInvokable]
5  public interface IStructuralEquatable
6  {
12  [__DynamicallyInvokable]
13  bool Equals(object other, IEqualityComparer comparer);
14 
18  [__DynamicallyInvokable]
19  int GetHashCode(IEqualityComparer comparer);
20  }
21 }
bool Equals(object other, IEqualityComparer comparer)
Determines whether an object is structurally equal to the current instance.
int GetHashCode(IEqualityComparer comparer)
Returns a hash code for the current instance.
Defines methods to support the comparison of objects for equality.
Defines methods to support the comparison of objects for structural equality.