Array.Sort(test);
Comes out to be
_A
_B
_C
A
B
C
I reverse it
C
B
A
_C
.. You know
I want it to be
_C
_B
_A
C
B
A
So how could I do that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could implement your own Comparer like this:
and then use it like this: