EyeshotCollection<T>.FindAll Method

Retrieves all the elements that match the conditions defined by the specified predicate.
Public Function FindAll( _ 
ByVal match As Predicate(Of T) _ 
) As List(Of T)
This language is not supported or no code example is available.
public List<T> FindAll( 
Predicate<T> match 
)
This language is not supported or no code example is available.

Parameters

match
Predicate<T>

The predicate delegate that defines the conditions of the elements to search for.

Return Value

List<T>

A collection containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty collection.

Exception type Condition

ArgumentNullException

match is null.

.NET Framework

Supported in: 4.5, 4.6, 4.7

In this article

Definition