Back to notes -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    A reproduction of the interface IEnumerable.Lecture 8 - slide 16 : 37
Program 1
using System.Collections;

public interface IEnumerable{
  IEnumerator GetEnumerator();
}