Click or drag to resize

CollectionUtilityMergeSort Method

Overload List
  NameDescription
Public methodStatic memberMergeSortT(IListT, IComparerT, Boolean)
Merge sort is a efficient sorting method. It divides input array in two halves, calls itself for the two halves and then merges the two sorted halves. Stable sort.
Public methodStatic memberMergeSortT(IListT, ComparisonT, Boolean)
Merge sort is a efficient sorting method. It divides input array in two halves, calls itself for the two halves and then merges the two sorted halves. Stable sort.
Public methodStatic memberMergeSortT(T, IComparerT, Boolean)
Merge sort is a efficient sorting method. It divides input array in two halves, calls itself for the two halves and then merges the two sorted halves. Stable sort.
Public methodStatic memberMergeSortT(T, ComparisonT, Boolean)
Merge sort is a efficient sorting method. It divides input array in two halves, calls itself for the two halves and then merges the two sorted halves. Stable sort.
Top
See Also