In the JSON objects that is returned from the API I'm using, it returns the time in Unix-format with "time" as key:
time = 1434810953
Using the JSON.Net
JsonConvert.DeserializeObject
I want to automatically convert the unix-timestamp to a DateTime for my object
Public DateTime Time { get; set; }
How can I do this?