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

using System;

public interface IEnumerator{
  Object Current{
    get;
  }

  bool MoveNext();
 
  void Reset();
}