ExtendedBindingListTTrueForAll Method

Determine if every item in the collection matches the conditions defined by the specified predicate

Definition

Namespace: EWSoftware.PDI.Binding
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public bool TrueForAll(
	Predicate<T> match
)

Parameters

match  PredicateT
The PredicateT delegate that defines the conditions to check in each item.

Return Value

Boolean
Returns true if every item in the collection matches the conditions defined in the specified predicate or if the collection is empty. It returns false if at least one item does not match the conditions.

See Also