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)

有帮助吗?

解决方案

As it happens, when parsing from JSON using JSON.net, this is handled automatically

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top