Back to notes -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    A reproduction of the generic interface IEquatable<T>.Lecture 11 - slide 15 : 21
Program 1
using System;

public interface IEquatable <T>{
  bool Equals (T other);
}