2003-11-06 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / class / corlib / System.Collections.Generic / IEnumerator.cs
1 // -*- Mode: csharp; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
2 //
3 // System.Collections.Generic.IEnumerator
4 //
5 // Author:
6 //    Martin Baulig (martin@ximian.com)
7 //
8 // (C) 2003 Novell, Inc.
9 //
10
11 using System;
12 using System.Runtime.InteropServices;
13
14 namespace System.Collections.Generic
15 {
16         [CLSCompliant(false)]
17         [ComVisible(false)]
18         public interface IEnumerator<T> : IDisposable
19         {
20                 bool MoveNext ();
21
22                 T Current {
23                         get;
24                 }
25         }
26 }