using System; using System.Runtime.CompilerServices; using Cpp2IlInjected; namespace System.Collections.Generic { /// Exposes the enumerator, which supports a simple iteration over a collection of a specified type. /// The type of objects to enumerate. // Token: 0x0200062E RID: 1582 [Token(Token = "0x200062E")] [TypeDependency("System.SZArrayHelper")] public interface IEnumerable : IEnumerable { /// Returns an enumerator that iterates through the collection. /// An enumerator that can be used to iterate through the collection. // Token: 0x0600311E RID: 12574 [Token(Token = "0x600311E")] [Address(Slot = "0")] IEnumerator GetEnumerator(); } }