Hi,
I just wanted to confirm that using Array.Sort() will always sort by ascending order? I.e. [94, 23, 45, 6] would become [ 6, 23, 45, 94] and if we wanted to do descending for some reason it would be Array.Reverse (AFTER doing an Array.Sort())?
Cheers,
Anthony.