| 12345678910111213141516171819202122 |
- //
- // System.Collections.IEnumerator
- //
- // Author:
- // Vladimir Vukicevic ([email protected])
- //
- // (C) 2001 Vladimir Vukicevic
- //
- using System;
- namespace System.Collections {
- public interface IEnumerator {
- object Current { get; }
- bool MoveNext ();
- void Reset ();
- }
- }
|