Sorts the elements in the entire List using the specified comparer.

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

Syntax

C#
public void Sort(
	IComparer<HashAlgorithm> comparer
)
Visual Basic
Public Sub Sort ( _
	comparer As IComparer(Of HashAlgorithm) _
)
Visual C++
public:
void Sort(
	IComparer<HashAlgorithm^>^ comparer
)

Parameters

comparer
Type: System.Collections.Generic..::..IComparer<(Of <(<'HashAlgorithm>)>)>
The IComparer implementation to use when comparing elements, or null to use the default comparer Comparer.Default.

See Also