using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// Supports a simple iteration over a generic collection.
/// The type of objects to enumerate.
// Token: 0x0200060E RID: 1550
[Token(Token = "0x200060E")]
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: 0x17000755 RID: 1877
// (get) Token: 0x06002F07 RID: 12039
[Token(Token = "0x17000755")]
T Current
{
[Token(Token = "0x6002F07")]
[Address(Slot = "0")]
get;
}
}
}