Click or drag to resize
Wizard .NET Library

EventedListTFindAll Method

Retrieves all the elements that match the conditions defined by the specified predicate.

Namespace:  System.Collections.Generic
Assembly:  AeroWizard (in AeroWizard.dll) Version: 2.2.3
Syntax
public EventedList<T> FindAll(
	Predicate<T> match
)
Request Example View Source

Parameters

match
Type: SystemPredicateT
The PredicateT delegate that defines the conditions of the elements to search for.

Return Value

Type: EventedListT
A EventedListT containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty EventedListT.
See Also