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: 0x0200062E RID: 1582
|
|
[Token(Token = "0x200062E")]
|
|
[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: 0x0600311E RID: 12574
|
|
[Token(Token = "0x600311E")]
|
|
[Address(Slot = "0")]
|
|
IEnumerator<T> GetEnumerator();
|
|
}
|
|
}
|