Table of Contents

Class Enumerable<T>

Namespace
Ecng.Common
Assembly
Ecng.Common.dll

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
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.