CollectionBaseTTrueForAll Method |
Determines if all of the items in the collection satisfy the condition
defined by predicate.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic virtual bool TrueForAll(
Predicate<T> predicate
)
public:
virtual bool TrueForAll(
Predicate<T>^ predicate
)
Parameters
- predicate
- Type: SystemPredicateT
A delegate that defines the condition to check for.
Return Value
Type:
BooleanTrue if all of the items in the collection satisfy the condition
defined by
predicate, or if the collection is empty. False if one or more items
in the collection do not satisfy
predicate.
See Also