using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// Supports a simple iteration over a generic collection.
/// The type of objects to enumerate.
// Token: 0x0200062F RID: 1583
[Token(Token = "0x200062F")]
public interface IEnumerator : IDisposable, IEnumerator
{
/// 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: 0x170007CD RID: 1997
// (get) Token: 0x0600311F RID: 12575
[Token(Token = "0x170007CD")]
T Current
{
[Token(Token = "0x600311F")]
[Address(Slot = "0")]
get;
}
}
}