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

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

Syntax

C#
public void Sort(
	IComparer<HashAlgorithm> comparer
)
Visual Basic (Declaration)
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