IListExtensionsRemoveAllT Method |
Removes all matching entries from the list.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static void RemoveAll<T>(
this IList<T> list,
Predicate<T> match
)
<ExtensionAttribute>
Public Shared Sub RemoveAll(Of T) (
list As IList(Of T),
match As Predicate(Of T)
)
public:
[ExtensionAttribute]
generic<typename T>
static void RemoveAll(
IList<T>^ list,
Predicate<T>^ match
)
[<ExtensionAttribute>]
static member RemoveAll :
list : IList<'T> *
match : Predicate<'T> -> unit
Parameters
- list
- Type: System.Collections.GenericIListT
- match
- Type: SystemPredicateT
Type Parameters
- T
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IListT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also