Click or drag to resize
CollectionBaseTFindAll Method
Enumerates the items in the collection that satisfy the condition defined by predicate.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public virtual IEnumerable<T> FindAll(
	Predicate<T> predicate
)

Parameters

predicate
Type: SystemPredicateT
A delegate that defines the condition to check for.

Return Value

Type: IEnumerableT
An IEnumerable<T> that enumerates the items that satisfy the condition.
See Also