ExtendedBindingListTTrueForAll Method
Determine if every item in the collection matches the conditions defined by the specified predicate
Namespace: EWSoftware.PDI.BindingAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public bool TrueForAll(
Predicate<T> match
)
Public Function TrueForAll (
match As Predicate(Of T)
) As Boolean
public:
bool TrueForAll(
Predicate<T>^ match
)
member TrueForAll :
match : Predicate<'T> -> bool
- match PredicateT
- The PredicateT delegate that defines the conditions to check in
each item.
BooleanReturns 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.