PageableList T  Sort Method (IComparer T ) TIBCO Spotfire 6.0 API Reference

Namespace: Spotfire.Dxp.Data.Collections
Assembly: Spotfire.Dxp.Data (in Spotfire.Dxp.Data.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

public void Sort(
	IComparer<T> comparer
)

Parameters

comparer
Type: System.Collections.Generic IComparer T 
The comparer to use for sorting. If comparer is null, the default comparer is used.
Remarks

The sorting algoritm is a combination of QuickSort and MergeSort. Since QuickSort is unstable; that is, if two elements are equal their order might not be preserved, the complete sort is unstable.
See Also