using System; using System.Runtime.InteropServices; namespace System.Collections { /// Exposes the enumerator, which supports a simple iteration over a non-generic collection. /// 1 // Token: 0x02000018 RID: 24 [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. /// 2 // Token: 0x06000172 RID: 370 [DispId(-4)] IEnumerator GetEnumerator(); } }