I'm having a date conversion problem in WCF.
I get a Json a DateTime in Unix format
"\/Date(1477320927000)\/" - 24-10-2016 12:55:27.
Wcf receives this date as 24-10-2016 14:55:27.
It gives a difference of 2 hours.
I tried to use TimeZone
, CultureInfo
, DateTimeKind
, DateTimeOffSet
, etc. But nothing worked or puts a 1 less or 2 more hours.
Does anyone know how to solve this?