Link Search Menu Expand Document

SortMethods Enumeration

Specifies the sorting algorithm used by the Sort() method.

Name Value Description
SM_TIMSORT 0 TimSort. Hybrid of insertion sort and merge sort.
SM_QUICKSORT_RECURSIVE 1 Recursive implementation of Quicksort
SM_QUICKSORT_ITERATIVE 2 Iterative implementation of Quicksort