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
Parameter | Type | Description |
---|---|---|
element | const 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
Parameter | Type | Description |
---|---|---|
newNode | const SharedPtr<LinkedListNode<T>>& | New node to add. |
See Also
- Typedef SharedPtr
- Class LinkedListNode
- Class LinkedList
- Namespace System::Collections::Generic
- Library Aspose.Slides