Do a quick sort on an array. Note this operates on the array directly. Example usage
mysort.Sort(arry, 0, (arry.length-1) );
Parameters
| arry | the array to sort |
| left | the left lower limit (call with 0 for whole array) |
| right | the right upper limit (call with array.length for whole array) |