I have List. This list holds integer values only though the data type is string. I want to sort the list based on integer order of the items.
How do I achieve it?
List<string> newZipCodesList = new List<string>();
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 can use IComparer Interface to implement your own sort. You will have to create a class which will implement IComparer of T where T in this case would be string.