I need to sort an Array array and it MUST be sorted by ascii.
if you use Array.Sort (myArray) it will not work.
for example: myArray ("aAzxxxx", "aabxxxx") if using Array.Sort (myArray) the result will be
but if ascii sort, because A <a, (capital A is 65, a is 97, therefore A <a) the result will be
this is the result i need. any ideas on how to ASCII sort an Array string?
THX
sorting c # ascii
Kai
source share