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

Syntax

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