[]
Sorts the elements in the entire collection using the specified Comparison<T>.
public void Sort(Comparison<TItem> comparison)
Public Sub Sort(comparison As Comparison(Of TItem))
Type | Name | Description |
---|---|---|
Comparison<TItem> | comparison |
Sorts the elements in the entire collection using the specified IComparer<T>.
public void Sort(IComparer<TItem> comparer)
Public Sub Sort(comparer As IComparer(Of TItem))
Type | Name | Description |
---|---|---|
IComparer<TItem> | comparer |
Sorts the elements in a range of elements using the specified IComparer<T>.
public void Sort(int index, int count, IComparer<TItem> comparer)
Public Sub Sort(index As Integer, count As Integer, comparer As IComparer(Of TItem))