using System; 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. /// 1 // Token: 0x0200001E RID: 30 public interface IEnumerable : IEnumerable { /// Returns an enumerator that iterates through the collection. /// A that can be used to iterate through the collection. /// 1 // Token: 0x0600027C RID: 636 IEnumerator GetEnumerator(); } }