Method FindAll
FindAll(Func<T, Boolean>)
Create a new list consisting of the items of this list satisfying a certain predicate.
Declaration
IList<T> FindAll(Func<T, bool> filter)
Parameters
Type | Name | Description |
---|---|---|
Func<T, System.Boolean> | filter | The filter delegate defining the predicate. |
Returns
Type | Description |
---|---|
IList<T> | The new list. |