System.Collections.IEnumerator public interface IEnumerator Documentation Code namespace System.Collections { public interface IEnumerator { object Current { get; } bool MoveNext(); void Reset(); } }