Back to slide -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'          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);
}