Click or drag to resize

PooledLinkedListTFindLast Method

Finds the last node that contains the specified value.

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> FindLast(
	T value
)
Request Example View Source

Parameters

value
Type: T
The value to search for.

Return Value

Type: LinkedListNodeT
The found node or null if none were found.
See Also