System::Collections::Generic::LinkedList::AddFirst method

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)
ParameterTypeDescription
elementconst T&Element to add.

ReturnValue

New node.

See Also

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)
ParameterTypeDescription
newNodeconst SharedPtr<LinkedListNode<T>>&New node to add.

See Also