Click or drag to resize

PooledLinkedListTAddAfter Method (LinkedListNodeT, T)

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

Parameters

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

Return Value

Type: LinkedListNodeT
The added node.
See Also