ILinkedList<T>.AddLast(TLinkedListNode<T>) Method
Adds the specified new node at the end of the ILinkedList<T> .
public procedure AddLast(const node: TLinkedListNode<T>); overload;
Parameters
- node
- Type: TLinkedListNode<T>
The new TLinkedListNode<T> to add at the end of the ILinkedList<T> .
- Spring.EArgumentNullException
- node is nil.
- Spring.EInvalidOperationException
- node belongs to another ILinkedList<T> .