System::Collections::Generic::LinkedList::AddLast metodo

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

Aggiunge newNode alla fine della lista.

void System::Collections::Generic::LinkedList<T>::AddLast(const SharedPtr<LinkedListNode<T>> &newNode)
ParametroTipoDescrizione
newNodeconst SharedPtr<LinkedListNode<T>>&Nuovo nodo da aggiungere.

Vedi anche

LinkedList::AddLast(const T&) method

Aggiunge element alla fine della lista.

SharedPtr<LinkedListNode<T>> System::Collections::Generic::LinkedList<T>::AddLast(const T &element)
ParametroTipoDescrizione
elementoconst T&Elemento da aggiungere.

ReturnValue

Nuovo nodo.

Vedi anche