Click or drag to resize
DigitalRunePooledEnumerableT Class
Inheritance Hierarchy
SystemObject
  DigitalRune.CollectionsPooledEnumerableT

Namespace: DigitalRune.Collections
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public abstract class PooledEnumerable<T> : IEnumerable<T>, 
	IEnumerable, IEnumerator<T>, IDisposable, IEnumerator

Type Parameters

T
The type of objects to enumerate.

The PooledEnumerableT type exposes the following members.

Constructors
  NameDescription
Protected methodPooledEnumerableT
Initializes a new instance of the PooledEnumerableT class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitialize
Initializes this instance.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnNext
Called when the enumerator should move to the next object.
Protected methodOnRecycle
Called when this instance should be recycled.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodDoT(ActionT)Overloaded.
Performs the given action on each element in a sequence when it is enumerated.
(Defined by LinqHelper.)
Public Extension MethodDoT(ActionT, Int32)Overloaded.
Performs the given action on each element (incorporating its index) in a sequence when it is enumerated.
(Defined by LinqHelper.)
Public Extension MethodForEachT(ActionT)Overloaded.
Immediately performs the given action on each element in a sequence.
(Defined by LinqHelper.)
Public Extension MethodForEachT(ActionT, Int32)Overloaded.
Immediately performs the given action on each element (incorporating its index) in a sequence.
(Defined by LinqHelper.)
Public Extension MethodIndexOfT
Returns the index of the first element in a sequence that satisfies the specified condition.
(Defined by LinqHelper.)
Top
Explicit Interface Implementations
Remarks
A PooledEnumerableT object can only be enumerated once. When the enumeration is finished and Dispose is called, the object is automatically recycled.
See Also