Sorts the elements in a range of elements in 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(
	int index,
	int count,
	IComparer<HashAlgorithm> comparer
)
Visual Basic (Declaration)
Public Sub Sort ( _
	index As Integer, _
	count As Integer, _
	comparer As IComparer(Of HashAlgorithm) _
)
Visual C++
public:
void Sort(
	int index, 
	int count, 
	IComparer<HashAlgorithm^>^ comparer
)

Parameters

index
Type: System..::.Int32
The zero-based starting index of the range to sort.
count
Type: System..::.Int32
The length of the range to sort.
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