Array::Sort Method

 

Sorts the elements in a one-dimensional array.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticSort(Array^)

Sorts the elements in an entire one-dimensional Array using the IComparable implementation of each element of the Array.

System_CAPS_pubmethodSystem_CAPS_staticSort(Array^, Array^)

Sorts a pair of one-dimensional Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the IComparable implementation of each key.

System_CAPS_pubmethodSystem_CAPS_staticSort(Array^, Array^, IComparer^)

Sorts a pair of one-dimensional Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the specified IComparer.

System_CAPS_pubmethodSystem_CAPS_staticSort(Array^, Array^, Int32, Int32)

Sorts a range of elements in a pair of one-dimensional Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the IComparable implementation of each key.

System_CAPS_pubmethodSystem_CAPS_staticSort(Array^, Array^, Int32, Int32, IComparer^)

Sorts a range of elements in a pair of one-dimensional Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the specified IComparer.

System_CAPS_pubmethodSystem_CAPS_staticSort(Array^, IComparer^)

Sorts the elements in a one-dimensional Array using the specified IComparer.

System_CAPS_pubmethodSystem_CAPS_staticSort(Array^, Int32, Int32)

Sorts the elements in a range of elements in a one-dimensional Array using the IComparable implementation of each element of the Array.

System_CAPS_pubmethodSystem_CAPS_staticSort(Array^, Int32, Int32, IComparer^)

Sorts the elements in a range of elements in a one-dimensional Array using the specified IComparer.

System_CAPS_pubmethodSystem_CAPS_staticSort<T>(array<T>^)

Sorts the elements in an entire Array using the IComparable<T> generic interface implementation of each element of the Array.

System_CAPS_pubmethodSystem_CAPS_staticSort<T>(array<T>^, Comparison<T>^)

Sorts the elements in an Array using the specified Comparison<T>.

System_CAPS_pubmethodSystem_CAPS_staticSort<T>(array<T>^, IComparer<T>^)

Sorts the elements in an Array using the specified IComparer<T> generic interface.

System_CAPS_pubmethodSystem_CAPS_staticSort<T>(array<T>^, Int32, Int32)

Sorts the elements in a range of elements in an Array using the IComparable<T> generic interface implementation of each element of the Array.

System_CAPS_pubmethodSystem_CAPS_staticSort<T>(array<T>^, Int32, Int32, IComparer<T>^)

Sorts the elements in a range of elements in an Array using the specified IComparer<T> generic interface.

System_CAPS_pubmethodSystem_CAPS_staticSort<TKey, TValue>(array<TKey>^, array<TValue>^)

Sorts a pair of Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the IComparable<T> generic interface implementation of each key.

System_CAPS_pubmethodSystem_CAPS_staticSort<TKey, TValue>(array<TKey>^, array<TValue>^, IComparer<TKey>^)

Sorts a pair of Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the specified IComparer<T> generic interface.

System_CAPS_pubmethodSystem_CAPS_staticSort<TKey, TValue>(array<TKey>^, array<TValue>^, Int32, Int32)

Sorts a range of elements in a pair of Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the IComparable<T> generic interface implementation of each key.

System_CAPS_pubmethodSystem_CAPS_staticSort<TKey, TValue>(array<TKey>^, array<TValue>^, Int32, Int32, IComparer<TKey>^)

Sorts a range of elements in a pair of Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the specified IComparer<T> generic interface.

Return to top
Show: