FindLast()

LinkedList::FindLast(const T&) const method

Performs reverse direction find of an element in the list.

SharedPtr<LinkedListNode<T>> System::Collections::Generic::LinkedList<T>::FindLast(const T &element) const

Arguments

ParameterTypeDescription
elementconst T&Element to find.

Return Value

Founded node if element is found, nullptr otherwise.

See Also