Contains()

LinkedList::Contains(const T&) const method

Checks if element is present in list.

bool System::Collections::Generic::LinkedList<T>::Contains(const T &element) const override

Arguments

ParameterTypeDescription
elementconst T&Element to look for.

Return Value

True if element is found, false otherwise.

See Also