begin()

LinkedList::begin() method

Gets iterator to the first element of collection.

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

Return Value

An iterator pointing to the first element in the linked list.

LinkedList::begin() const method

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

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

Return Value

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

See Also