







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Overload List
Name | Description | |
---|---|---|
![]() ![]() | StableSortInPlace<(Of <T>)>(IList<(Of <T>)>) |
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.
|
![]() ![]() | StableSortInPlace<(Of <T>)>(IList<(Of <T>)>, IComparer<(Of <T>)>) |
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.
|
![]() ![]() | StableSortInPlace<(Of <T>)>(IList<(Of <T>)>, Comparison<(Of <T>)>) |
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.
|