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

using System;

namespace System.Collections.Generic {

	public interface IEnumerator<T> : IDisposable, IEnumerator {

		new T Current {
			get;
		}

	}

}
#endif