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: 0x0200060D RID: 1549 [Token(Token = "0x200060D")] [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: 0x06002F06 RID: 12038 [Token(Token = "0x6002F06")] [Address(Slot = "0")] IEnumerator GetEnumerator(); } }