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