IEnumerator.cs 288 B

12345678910111213141516171819202122
  1. //
  2. // System.Collections.IEnumerator
  3. //
  4. // Author:
  5. // Vladimir Vukicevic ([email protected])
  6. //
  7. // (C) 2001 Vladimir Vukicevic
  8. //
  9. using System;
  10. namespace System.Collections {
  11. public interface IEnumerator {
  12. object Current { get; }
  13. bool MoveNext ();
  14. void Reset ();
  15. }
  16. }