I am trying to order a list by date and popularity. From service i have a json response which has date in string format. Is it possible to change the date from Http get response to date object so that i want to use OrderBy filter to sort the list by date.
My json is
{
"Name": "Paul ",
"Country": "SINGAPORE",
"Date": "12/31/14 20:40",
"Rating": "2"
}