2004-05-01 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Collections / IEnumerable.cs
1 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
2 //
3 // System.Collections.IEnumerable
4 //
5 // Author:
6 //    Vladimir Vukicevic (vladimir@pobox.com)
7 //
8 // (C) 2001 Vladimir Vukicevic
9 //
10
11 using System;
12 using System.Runtime.InteropServices;
13
14 namespace System.Collections {
15         [Guid("496B0ABE-CDEE-11d3-88E8-00902754C43A")]
16         public interface IEnumerable {
17                 [DispId(-4)]
18                 IEnumerator GetEnumerator();
19         }
20 }