LinkedList.Remove Method (Generic LinkedListNode)
Assembly: System (in system.dll)
public void Remove ( LinkedListNode<T> node )
public function Remove ( node : LinkedListNode<T> )
Not applicable.
Parameters
- node
The LinkedListNode to remove from the LinkedList.
The following code example and output demonstrate the Remove method. The code example begins by marking the existing node "fox". The code then finds the node containing "dog" and attempts to add "fox" before "dog" without first removing "fox" from the list. This causes an InvalidOperationException, which is caught. The code example then uses the Remove(Generic LinkedListNode) method overload to remove the node containing "fox" from the list, and then adds "fox" before "dog". Finally, the code example uses the Remove(Generic LinkedListNode) method overload to remove the node containing "dog" and inserts it at the location formerly occupied by "fox".
This code and output are part of a larger example provided for the LinkedList class.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.