IList<TValue>.begin Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Designates the beginning of the controlled sequence.
public:
void ^ begin(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ % unnamedParam1);
public void begin (ref Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> unnamedParam1);
abstract member begin : ContainerBidirectionalIterator -> unit
Public Function begin (ByRef unnamedParam1 As ContainerBidirectionalIterator(Of TValue)) As Void
Parameters
- unnamedParam1
- ContainerBidirectionalIterator<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 list::begin (STL/CLR).