interfaces/reproductions/IComparable.cs - A reproduction of the generic interface
IComparable<T>
.
Lecture 11 - slide 14 : 21
Program 2
using System; public interface IComparable
<T>
{ int CompareTo(
T
other); }