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: 0x0200060E RID: 1550
|
|
[Token(Token = "0x200060E")]
|
|
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: 0x17000755 RID: 1877
|
|
// (get) Token: 0x06002F07 RID: 12039
|
|
[Token(Token = "0x17000755")]
|
|
T Current
|
|
{
|
|
[Token(Token = "0x6002F07")]
|
|
[Address(Slot = "0")]
|
|
get;
|
|
}
|
|
}
|
|
}
|