System::Collections::Generic::LinkedList::AddLast método

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

Agrega newNode al final de la lista.

void System::Collections::Generic::LinkedList<T>::AddLast(const SharedPtr<LinkedListNode<T>> &newNode)
ParámetroTipoDescripción
newNodeconst SharedPtr<LinkedListNode<T>>&Nuevo nodo a añadir.

Ver también

LinkedList::AddLast(const T&) method

Añade element al final de la lista.

SharedPtr<LinkedListNode<T>> System::Collections::Generic::LinkedList<T>::AddLast(const T &element)
ParámetroTipoDescripción
elementoconst T&Elemento a añadir.

ReturnValue

Nuevo nodo.

Ver también