public class LinkedList<T> : IEnumerable<T> { // ... existing code public System.Collections.IEnumerator GetEnumerator() { /* ... */ } }