Click or drag to resize

cacheIListCacheTGetEnumerator Method

Returns an enumerator that iterates through the collection.

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public abstract IEnumerator<T> GetEnumerator()

Return Value

Type: IEnumeratorT
An enumerator that can be used to iterate through the collection.

Implements

IEnumerableTGetEnumerator
Remarks
This uses the cache until it needs to access an element it has not cached. When this happens it will run an IEnumeratorT up to that element and continue.
See Also