using System; public interface IEnumerator{ Object Current{ get; } bool MoveNext(); void Reset(); }