Find()

LinkedList::Find(const T&) const method

Performs forward direction find of an element in the list.

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

Arguments

ParameterTypeDescription
elementconst T&Element to find.

Return Value

Founded node if element is found, nullptr otherwise.

See Also