Finds an item in the linked list. Pass in a lambda expression that takes a type of the item in the linked list and compares it with what you want to find lambda should return true if found, false otherwise

Namespace: RCLibrary
Assembly: RCLibrary (in RCLibrary.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public T Find(
	Func<T, bool> property
)
Visual Basic
Public Function Find ( _
	property As Func(Of T, Boolean) _
) As T
Visual C++
public:
T Find(
	Func<T, bool>^ property
)

Parameters

property
Type: System..::..Func<(Of <(<'T, Boolean>)>)>

[Missing <param name="property"/> documentation for "M:RCLibrary.RCLinkedList`1.Find(System.Func{`0,System.Boolean})"]

Return Value

[Missing <returns> documentation for "M:RCLibrary.RCLinkedList`1.Find(System.Func{`0,System.Boolean})"]

See Also