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

Provides interface of bidirectional type-safe enumerator

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

Syntax

C#
public interface IBiDirEnumerator<T> : IEnumerator<T>
Visual Basic
Public Interface IBiDirEnumerator(Of T) _
	Inherits IEnumerator(Of T)
Visual C++
generic<typename T>
public interface class IBiDirEnumerator : IEnumerator<T>
F#
type IBiDirEnumerator<'T> =  
    interface
        interface IEnumerator<'T>
    end
JScript
JScript does not support generic types or methods.

Type Parameters

T
Type of items to enumerate

See Also