BigListTSort Method (IComparerT) |
Sorts the list in place. A supplied IComparer<T> is used
to compare the items in the list.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic void Sort(
IComparer<T> comparer
)
public:
void Sort(
IComparer<T>^ comparer
)
Parameters
- comparer
- Type: System.Collections.GenericIComparerT
The comparer instance used to compare items in the collection. Only
the Compare method is used.
RemarksThe Quicksort algorithms is used to sort the items. In virtually all cases,
this takes time O(N log N), where N is the number of items in the list.
See Also