Class Enumerable<T>
Represents an abstract enumerable collection of elements.
public abstract class Enumerable<T> : IEnumerable<T>, IEnumerable
Type Parameters
T
The type of elements in the collection.
- Inheritance
-
Enumerable<T>
- Implements
-
IEnumerable<T>
- Inherited Members
- Extension Methods
Constructors
Enumerable()
protected Enumerable()
Methods
GetEnumerator()
When overridden in a derived class, returns an enumerator that iterates through the collection.
protected abstract IEnumerator<T> GetEnumerator()
Returns
- IEnumerator<T>
An enumerator that can be used to iterate through the collection.