I need to parse the JSON data from the server and make a list of objects.
I use DataContract to establish a connection between the fields of the json word and the properties of the class, however I have a problem: one of these fields contains a date in a string from (something like "2011-01-01 15:00 UTC"); I want to put this in a DateTime property.
How can I convert this string to datetime and pass it automatically using a DataContract? perhaps?
source share