[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Info=Sorts the elements in one-dimensional Array objects. [Property] Index=Sets the starting index of the range to sort. ARG(int)|1|0 Length=Sets the number of elements in the range to sort. ARG(int)|1|0 ElementType=Sets the Type of elements. ARG(Type)|20|(empty)|Type KeysType=Sets the Type of elements contains the keys to sort. ARG(Type)|20|(empty)|Type ItemsType=Sets the Type of elements contains the items to sort. ARG(Type)|20|(empty)|Type [Methods] doSort=Sorts the elements in an entire one-dimensional Array using the IComparable implementation of each element of the Array. ARG(Array array)|1|0 *doSort2=Sorts a pair of one-dimensional Array objects based on the keys in the first Array using the IComparable implementation of each key. ARG(Array keys, Array items)|1|0 *doSort3=Sorts the elements in a one-dimensional Array using the specified IComparer. ARG(Array array, IComparer comparer)|1|0 *doSort4=Sorts a pair of one-dimensional Array objects based on the keys in the first Array using the specified IComparer. ARG(Array keys, Array items, IComparer comparer)|1|0 *doSort5=Sorts the elements in a range of elements in a one-dimensional Array using the IComparable implementation of each element of the Array. ARG(Array array, int index, int length)|1|0 *doSort6=Sorts a range of elements in a pair of one-dimensional Array objects based on the keys in the first Array using the IComparable implementation of each key. ARG(Array keys, Array items, int index, int length)|1|0 *doSort7=Sorts the elements in a range of elements in a one-dimensional Array using the specified IComparer. ARG(Array array, int index, int length, IComparer comparer)|1|0 *doSort8=Sorts a range of elements in a pair of one-dimensional Array objects based on the keys in the first Array using the specified IComparer. ARG(Array keys, Array items, int index, int length, IComparer comparer)|1|0 Array=Defines the one-dimensional Array to sort. ARG(Array)|4|13 *Keys=Defines the one-dimensional Array that contains the keys to sort. ARG(Array)|4|13 *Items=Defines the one-dimensional Array that contains the items that correspond to each of the keys in the keysArray or null to sort only the Keys array. ARG(Array)|4|13 *Index=Defines the starting index of the range to sort. ARG(int)|4|1 *Length=Defines number of elements in the range to sort. ARG(int)|4|1 *Comparer=The IComparer implementation to use when comparing elements or null to use the IComparable implementation of each element. ARG(IComparer)|4|0