FindAll()

List::FindAll(System::Predicate<T>) method

Looks for elements adhering to specific predicate.

ListPtr<T> System::Collections::Generic::List<T>::FindAll(System::Predicate<T> match)

Arguments

ParameterTypeDescription
matchSystem::Predicate<T>Predicate to check elements with.

Return Value

List of matching elements (if any) or empty list.

See Also