Click or drag to resize

WeakCollectionTGetEnumerator Method

Enumerates the collection. Each MoveNext() call on the enumerator is O(1), thus the enumeration is O(n).

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public IEnumerator<T> GetEnumerator()

Return Value

IEnumeratorT
An enumerator over the live elements in the collection.

Implements

IEnumerableTGetEnumerator
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown if the collection is already being enumerated.
See Also