using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Collections { /// Exposes an enumerator, which supports a simple iteration over a non-generic collection. // Token: 0x020005D8 RID: 1496 [Token(Token = "0x20005D8")] [ComVisible(true)] [Guid("496B0ABE-CDEE-11d3-88E8-00902754C43A")] public interface IEnumerable { /// Returns an enumerator that iterates through a collection. /// An object that can be used to iterate through the collection. // Token: 0x06002E8C RID: 11916 [Token(Token = "0x6002E8C")] [Address(Slot = "0")] [DispId(-4)] IEnumerator GetEnumerator(); } }