2004-05-01 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Collections / IEnumerator.cs
1 //
2 // System.Collections.IEnumerator.cs
3 //
4 // Author:
5 //    Vladimir Vukicevic (vladimir@pobox.com)
6 //
7 // (C) 2001 Vladimir Vukicevic
8 //
9
10 using System;
11 using System.Runtime.InteropServices;
12
13 namespace System.Collections
14 {
15
16         [Guid ("496B0ABF-CDEE-11D3-88E8-00902754C43A")]
17         public interface IEnumerator
18         {
19                 object Current { get; }
20
21                 bool MoveNext ();
22
23                 void Reset ();
24         }
25
26 }