So I am working on a site that an intern did, we have a date column in out DataTable but it is just a string, so when doing dt.DefaultView.Sort = "DATE ASC"
it is sorting weird, here is an example.
Date:
01/31/2015
02/10/2015
02/15/2015
02/15/2014
02/20/2015
02/20/2014
02/21/2014
As you can see by this, it is sorting by the first two mm/dd but year is mixed into this, so we have 2014 dates with 2015 etc. I need to sort first by the year and then by the other two. Any ideas how to do this since the date is just a string?