* ArrayList.cs: initial checkin and implementation
[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 // MCS.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 MCS.System;
13
14 namespace MCS.System.Collections {
15
16         public interface IEnumerable {
17                 IEnumerator GetEnumerator();
18         }
19 }