Removes the first occurrence of a specific HashAlgorithm from the List.

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

Syntax

C#
public bool Remove(
	HashAlgorithm item
)
Visual Basic
Public Function Remove ( _
	item As HashAlgorithm _
) As Boolean
Visual C++
public:
bool Remove(
	HashAlgorithm^ item
)

Parameters

item
Type: System.Security.Cryptography..::..HashAlgorithm
The HashAlgorithm to remove from the List.

Return Value

true if item is successfully removed; otherwise, false. This method also returns false if item was not found in the List.

See Also