I have seen previous questions which are related my query but couldn't figure out on how to resolve my issue.
I have a list "Sites" with one of the items as "Year". It is defined as string and is in the format "MM/yyyy". When I try to sort the list based on the year, I'm facing a small problem.
Data for "Year" is
01/2012
04/2012
01/2013
06/2012
When I sort the list by using orderby, the output I'm getting is
01/2012
01/2013
04/2012
06/2012
which is incorrect.
Cannot convert the string using Convert.ToDateTime
as the string format doesn't contain day value. How should I go forward with this? How to implement DateTime.TryParseExact
without changing the format of the string?
Note : The format should be the same and the list should be sorted.
you could try something like this without having to change the input this will give you the order that you like also look at the
OrderByDescending
property if you need it in a different sort order