[This is preliminary documentation and is subject to change.]

Implements type-safe IEnumerator<(Of <(<'T>)>)> for 1-dimensional array of any type

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public sealed class TypedArrayEnumerator<T> : IBiDirEnumerator<T>
Visual Basic
Public NotInheritable Class TypedArrayEnumerator(Of T) _
	Implements IBiDirEnumerator(Of T)
Visual C++
generic<typename T>
public ref class TypedArrayEnumerator sealed : IBiDirEnumerator<T>
F#
[<SealedAttribute>]
type TypedArrayEnumerator<'T> =  
    class
        interface IBiDirEnumerator<'T>
    end
JScript
JScript does not support generic types or methods.

Type Parameters

T
Type of array element

Remarks

Supports arrays with non-zero lower bound.

Inheritance Hierarchy

System..::..Object
  Tools.CollectionsT.GenericT..::..TypedArrayEnumerator<(Of <(<'T>)>)>

See Also