[This is preliminary documentation and is subject to change.]
Removes all items that matches given predicate
Namespace: Tools.CollectionsT.GenericTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public virtual void RemoveAll(
Predicate<T> Match
) |
| Visual Basic |
|---|
Public Overridable Sub RemoveAll ( _
Match As Predicate(Of T) _
) |
| Visual C++ |
|---|
public:
virtual void RemoveAll(
Predicate<T>^ Match
) |
| F# |
|---|
abstract RemoveAll :
Match:Predicate<'T> -> unit
override RemoveAll :
Match:Predicate<'T> -> unit |
| JScript |
|---|
public function RemoveAll(
Match : Predicate<T>
) |
Parameters
- Match
- Type: System..::..Predicate<(Of <(<'T>)>)>
Predicate to match. If this predicate returns true, item is removed
Remarks
Exceptions
See Also