Click or drag to resize

PooledLinkedListTAddFirst Method (T)

Adds a new node containing the specified value at the start of 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> AddFirst(
	T value
)
Request Example View Source

Parameters

value
Type: T
The value to add.

Return Value

Type: LinkedListNodeT
The node that was added.
See Also