IVector<TValue>.begin Method

Definition

Designates the beginning of the controlled sequence.

public:
 void ^ begin(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ % unnamedParam1);
public void begin (ref Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> unnamedParam1);
abstract member begin : ContainerRandomAccessIterator -> unit
Public Function begin (ByRef unnamedParam1 As ContainerRandomAccessIterator(Of TValue)) As Void

Parameters

unnamedParam1
ContainerRandomAccessIterator<TValue>

A random-access iterator that designates the first element of the controlled sequence, or just beyond the end of an empty sequence. You use it to obtain an iterator that designates the current beginning of the controlled sequence, but its status can change if the length of the controlled sequence changes.

Remarks

For more information, see vector::begin (STL/CLR).

Applies to