22 lines
772 B
C#
22 lines
772 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Collections.Generic
|
|
{
|
|
/// <summary>Exposes the enumerator, which supports a simple iteration over a collection of a specified type.</summary>
|
|
/// <typeparam name="T">The type of objects to enumerate.</typeparam>
|
|
// Token: 0x0200060D RID: 1549
|
|
[Token(Token = "0x200060D")]
|
|
[TypeDependency("System.SZArrayHelper")]
|
|
public interface IEnumerable<out T> : IEnumerable
|
|
{
|
|
/// <summary>Returns an enumerator that iterates through the collection.</summary>
|
|
/// <returns>An enumerator that can be used to iterate through the collection.</returns>
|
|
// Token: 0x06002F06 RID: 12038
|
|
[Token(Token = "0x6002F06")]
|
|
[Address(Slot = "0")]
|
|
IEnumerator<T> GetEnumerator();
|
|
}
|
|
}
|