AddFirst()

LinkedList::AddFirst(const T&) method

Adds element to the beginning of the list.

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

Arguments

ParameterTypeDescription
elementconst T&Element to add.

Return Value

New node.

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

Adds newNode to the beginning of the list.

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

Arguments

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

See Also