Click or drag to resize

PooledLinkedListTAddBefore Method (LinkedListNodeT, T)

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

Parameters

node
Type: System.Collections.GenericLinkedListNodeT
The node that value should be added before.
value
Type: T
The value to add.

Return Value

Type: LinkedListNodeT
The added node.
See Also