BigListTSort Method |
Namespace: X3Platform.Collections
Exception | Condition |
---|---|
InvalidOperationException | The type T does not implement either the IComparable or IComparable<T> interfaces. |
The Quicksort algorithm 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.
Values are compared by using the IComparable or IComparable<T> interface implementation on the type T.