using System;
namespace System.Collections.Generic
{
/// Supports a simple iteration over a generic collection.
/// The type of objects to enumerate.
/// 1
// Token: 0x0200001A RID: 26
public interface IEnumerator : IEnumerator, IDisposable
{
/// Gets the element in the collection at the current position of the enumerator.
/// The element in the collection at the current position of the enumerator.
// Token: 0x17000008 RID: 8
// (get) Token: 0x06000174 RID: 372
T Current { get; }
}
}