9 lines
159 B
C#
Raw Normal View History

using System;
namespace System.Collections {
public interface IStructuralComparable {
Int32 CompareTo(Object other, IComparer comparer);
}
}