9 lines
159 B
C#
9 lines
159 B
C#
using System;
|
|
|
|
namespace System.Collections {
|
|
|
|
public interface IStructuralComparable {
|
|
Int32 CompareTo(Object other, IComparer comparer);
|
|
}
|
|
}
|