ILinkedList<T>.Remove(TLinkedListNode<T>) Method
Removes the specified node from the ILinkedList<T> .
public procedure Remove(const node: TLinkedListNode<T>); overload;
Parameters
- node
- Type: TLinkedListNode<T>
The TLinkedListNode<T> to remove from the ILinkedList<T> .
- Spring.EArgumentNullException
- node is nil.
- Spring.EInvalidOperationException
- node is not in the current ILinkedList<T> .