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