Click or drag to resize

PooledLinkedListTAddAfter Method (LinkedListNodeT, LinkedListNodeT)

Adds the specified new node after the specified existing node in the PooledLinkedList<T>.

Namespace:  Archon.SwissArmyLib.Collections
Assembly:  Archon.SwissArmyLib (in Archon.SwissArmyLib.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void AddAfter(
	LinkedListNode<T> node,
	LinkedListNode<T> newNode
)
Request Example View Source

Parameters

node
Type: System.Collections.GenericLinkedListNodeT
The node that newNode should be added after.
newNode
Type: System.Collections.GenericLinkedListNodeT
The node to add.
See Also