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

using System;
using System.Collections;

namespace System.Collections.Generic {

	public interface IEnumerable<T> : IEnumerable {

		new IEnumerator<T> GetEnumerator();

	}

}
#endif