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

Namespace:  Rebex.IO.Compression
Assembly:  Rebex.Zip (in Rebex.Zip.dll) Version: 1.0.3844.0

Syntax

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

Parameters

comparer
Type: System.Collections.Generic..::.IComparer<(Of <(ArchiveItem>)>)
The System.Collections.Generic.IComparer<T> implementation to use when comparing elements, or a null reference (Nothing in Visual Basic) to use the default comparer.

See Also