Click or drag to resize

SortingSortT(IListT, IComparerT) Method

Sort a list of keys, in place using the quick sort algorithm.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void Sort<T>(
	IList<T> keys,
	IComparer<T> comparer = null
)

Parameters

keys  IListT
List to sort.
comparer  IComparerT  (Optional)
Comparison, defining the sort order.

Type Parameters

T
The type of elements in the key list.
See Also