Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          interfaces/reproductions/IComparable-non-generic.cs - A reproduction of the non-generic interface IComparable.Lecture 11 - slide 14 : 21
Program 1

using System;

public interface IComparable{
  int CompareTo(Object other);
}