Adds the elements of the specified collection to the end of the List.

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

Syntax

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

Parameters

collection
Type: System.Collections.Generic..::.IEnumerable<(Of <(HashAlgorithm>)>)
The collection whose elements should be added to the end of the List.

See Also