Newer
Older
DNA / corlib / System.Collections / IEnumerator.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 152 bytes First commit
#if !LOCALTEST
namespace System.Collections {

	public interface IEnumerator {
		object Current { get;}
		bool MoveNext();
		void Reset();
	}

}
#endif