CollectionBaseTRemoveAll Method |
Removes all the items in the collection that 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 ICollection<T> RemoveAll(
Predicate<T> predicate
)
public:
virtual ICollection<T>^ RemoveAll(
Predicate<T>^ predicate
)
Parameters
- predicate
- Type: SystemPredicateT
A delegate that defines the condition to check for.
Return Value
Type:
ICollectionTReturns a collection of the items that were removed, in sorted order.
See Also