[]
Sorts the elements in the entire collection using the specified Comparison<T>.
public void Sort(Comparison<TItem> comparison)
| Type | Name | Description |
|---|---|---|
| Comparison<TItem> | comparison |
Sorts the elements in the entire collection using the specified IComparer<T>.
public void Sort(IComparer<TItem> comparer)
| 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)
| Type | Name | Description |
|---|---|---|
| int | index | |
| int | count | |
| IComparer<TItem> | comparer |