LinkedList<T>.ICollection<T>.Add Method
Adds an item at the end of the ICollection<T>.
Assembly: System (in System.dll)
Parameters
- value
- Type: T
The value to add at the end of the ICollection<T>.
Implements
ICollection<T>.Add(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 demonstrates that when a LinkedList<T> is cast to ICollection<T>, the LinkedListSystem#Collections#Generic#ICollection{`0}#Add(UTP) method can be used to add a new node to the end of the linked list. The code example removes the last node in a linked list of strings, and adds a new node.
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.