问题
I have a supposed Unix date format coming through in a json feed from a third party that looks like this:
/Date(1391741913713+1100)/
Is there any way I can parse that to a DateTime
object?
I'm not convinced this is a "true" Unix dateTime object...
Looking at the accepted answer to this question: How to convert a Unix timestamp to DateTime and vice versa? The parsing method takes a double... my string contains +1100 (as well as the outder /Date()/ part)
回答1:
As it happens, when parsing from JSON using JSON.net, this is handled automatically
来源:https://stackoverflow.com/questions/22211779/parsing-a-supposed-unix-date-time-with-timezone-info-to-datetime-object