Click or drag to resize
AlgorithmsStableSortInPlace Method
Overload List
  NameDescription
Public methodStatic memberStableSortInPlaceT(IListT)
Sorts a list or array in place. The sort is stable, which means that if items X and Y are equal, and X precedes Y in the unsorted collection, X will precede Y is the sorted collection.
Public methodStatic memberStableSortInPlaceT(IListT, IComparerT)
Sorts a list or array in place. The sort is stable, which means that if items X and Y are equal, and X precedes Y in the unsorted collection, X will precede Y is the sorted collection. A supplied IComparer<T> is used to compare the items in the list.
Public methodStatic memberStableSortInPlaceT(IListT, ComparisonT)
Sorts a list or array in place. The sort is stable, which means that if items X and Y are equal, and X precedes Y in the unsorted collection, X will precede Y is the sorted collection. A supplied Comparison<T> delegate is used to compare the items in the list.
Top
See Also