Click or drag to resize

PooledLinkedListTAddBefore Method (LinkedListNodeT, LinkedListNodeT)

Adds the specified new node before 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 AddBefore(
	LinkedListNode<T> node,
	LinkedListNode<T> newNode
)
Request Example View Source

Parameters

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