Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          interfaces/reproductions/IEnumerable.cs - A reproduction of the interface IEnumerable.Lecture 8 - slide 16 : 37
Program 1

using System.Collections;

public interface IEnumerable{
  IEnumerator GetEnumerator();
}