25 lines
754 B
C#
25 lines
754 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Collections.Generic
|
|
{
|
|
/// <summary>Supports a simple iteration over a generic collection.</summary>
|
|
/// <typeparam name="T">The type of objects to enumerate.</typeparam>
|
|
// Token: 0x0200062F RID: 1583
|
|
[Token(Token = "0x200062F")]
|
|
public interface IEnumerator<out T> : IDisposable, IEnumerator
|
|
{
|
|
/// <summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
|
/// <returns>The element in the collection at the current position of the enumerator.</returns>
|
|
// Token: 0x170007CD RID: 1997
|
|
// (get) Token: 0x0600311F RID: 12575
|
|
[Token(Token = "0x170007CD")]
|
|
T Current
|
|
{
|
|
[Token(Token = "0x600311F")]
|
|
[Address(Slot = "0")]
|
|
get;
|
|
}
|
|
}
|
|
}
|