Removes the all the elements that match the conditions defined by the specified predicate.

Namespace: Classless.Hasher
Assembly: Classless.Hasher (in Classless.Hasher.dll) Version: 0.9.4179.24336

Syntax

C#
public int RemoveAll(
	Predicate<HashAlgorithm> match
)
Visual Basic
Public Function RemoveAll ( _
	match As Predicate(Of HashAlgorithm) _
) As Integer
Visual C++
public:
int RemoveAll(
	Predicate<HashAlgorithm^>^ match
)

Parameters

match
Type: System..::..Predicate<(Of <(<'HashAlgorithm>)>)>
The Predicate delegate that defines the conditions of the elements to remove.

Return Value

The number of elements removed from the List.

See Also