Initializes an instance of HashAlgorithmList that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.

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

Syntax

C#
public HashAlgorithmCollection(
	IEnumerable<HashAlgorithm> collection
)
Visual Basic
Public Sub New ( _
	collection As IEnumerable(Of HashAlgorithm) _
)
Visual C++
public:
HashAlgorithmCollection(
	IEnumerable<HashAlgorithm^>^ collection
)

Parameters

collection
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'HashAlgorithm>)>)>
The collection whose elements are copied to the new List.

See Also