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

Returns an enumerator that iterates through the collection over values only.

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

Syntax

C#
public IEnumerator<TValue> GetValuesEnumerator()
Visual Basic
Public Function GetValuesEnumerator As IEnumerator(Of TValue)
Visual C++
public:
virtual IEnumerator<TValue>^ GetValuesEnumerator() sealed
F#
abstract GetValuesEnumerator : unit -> IEnumerator<'TValue> 
override GetValuesEnumerator : unit -> IEnumerator<'TValue> 
JScript
public final function GetValuesEnumerator() : IEnumerator<TValue>

Return Value

A IEnumerator<(Of <(<'T>)>)> that can be used to iterate through the collection.

Implements

IEnumerable<(Of <(<'T>)>)>..::..GetEnumerator()()()()

See Also