System::Collections::Generic::List::begin method

List::begin() method

Gets iterator to the first element of collection.

iterator System::Collections::Generic::List<T>::begin() noexcept

ReturnValue

An iterator pointing to the first element in the list.

See Also

List::begin() const method

Gets iterator to the first element of the const-qualified collection.

const_iterator System::Collections::Generic::List<T>::begin() const noexcept

ReturnValue

An iterator pointing to the first element in the const-qualified instance of the list.

See Also