Method Filter
Filter(Func<T, Boolean>)
Create an enumerable, enumerating the items of this collection that satisfies a certain condition.
Declaration
public virtual Collections.Generic.IEnumerable<T> Filter(Func<T, bool> predicate)
Parameters
Type | Name | Description |
---|---|---|
Func<T, System.Boolean> | predicate | A delegate (Func<, > with )
defining the predicate
|
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T> | The filtered enumerable |