Click or drag to resize
BigListTSort Method
Sorts the list in place.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public void Sort()
Exceptions
ExceptionCondition
InvalidOperationExceptionThe type T does not implement either the IComparable or IComparable<T> interfaces.
Remarks

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.

See Also