mscorlib(4.0.0.0) API with additions
IStructuralComparable.cs
1 namespace System.Collections
2 {
4  [__DynamicallyInvokable]
5  public interface IStructuralComparable
6  {
12  [__DynamicallyInvokable]
13  int CompareTo(object other, IComparer comparer);
14  }
15 }
Exposes a method that compares two objects.
Definition: IComparer.cs:8
int CompareTo(object other, IComparer comparer)
Determines whether the current collection object precedes, occurs in the same position as,...
Supports the structural comparison of collection objects.