LinkedList<T>.AddLast Method (LinkedListNode<T>)
Adds the specified new node at the end of the LinkedList<T>.
Assembly: System (in System.dll)
Parameters
- node
- Type: System.Collections.Generic.LinkedListNode<T>
The new LinkedListNode<T> to add at the end of the LinkedList<T>.
| Exception | Condition |
|---|---|
| ArgumentNullException | node is null. |
| InvalidOperationException | node belongs to another LinkedList<T>. |
LinkedList<T> accepts null as a valid Value for reference types and allows duplicate values.
If the LinkedList<T> is empty, the new node becomes the First and the Last.
This method is an O(1) operation.
The following code example and output demonstrate the use of the AddLast method to add an existing node to the end of the list. The code example inserts a new node at the beginning of a linked list of nodes containing strings, displays the list, marks and removes the first node, and uses the AddLast(LinkedListNode<T>) method overload to add the node to the end of the list.
This code and output are part of a larger example provided for the LinkedList<T> class.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.