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.8.3649.33599

Syntax

C#
public HashAlgorithmCollection(
	IEnumerable<HashAlgorithm> collection
)
Visual Basic (Declaration)
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