Newer
Older
DNA / corlib / System.Collections / IEnumerable.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 125 bytes First commit
#if !LOCALTEST
namespace System.Collections {

	public interface IEnumerable {

		IEnumerator GetEnumerator();

	}

}
#endif