IEnumerator IEnumerable.GetEnumerator() { return(WrappedList.GetEnumerator()); }
///<summary> /// Gets an enumerator for the list. ///</summary> ///<returns>Enumerator for the list.</returns> public RawList <T> .Enumerator GetEnumerator() { return(WrappedList.GetEnumerator()); }
IEnumerator <T> IEnumerable <T> .GetEnumerator() { return(WrappedList.GetEnumerator()); }
/// <summary> /// Returns an enumerator that iterates through the collection. /// </summary> /// <returns> /// A <see cref="IEnumerator{T}"/> that can be used to iterate /// through the collection. /// </returns> /// <filterpriority>1</filterpriority> public override IEnumerator <T> GetEnumerator() { return(WrappedList.GetEnumerator()); }