AddLast()

LinkedList::AddLast(const T&) method

Adds element to the end of the list.

SharedPtr<LinkedListNode<T>> System::Collections::Generic::LinkedList<T>::AddLast(const T &element)

Arguments

ParameterTypeDescription
elementconst T&Element to add.

Return Value

New node.

LinkedList::AddLast(const SharedPtr<LinkedListNode<T>>&) method

Adds newNode to the end of the list.

void System::Collections::Generic::LinkedList<T>::AddLast(const SharedPtr<LinkedListNode<T>> &newNode)

Arguments

ParameterTypeDescription
newNodeconst SharedPtr<LinkedListNode<T>>&New node to add.

See Also