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