My application consumes the APIs, one of the API returns the Datetime value with unix time format
ex: user.DateOfBirth = "/Date(476197200000+1100)/"
The deserialize process is working well (deserialize<User> object) but when I display the datetime to GUI.
the UI displays this date as 2/Feb/1985 My expected is: 3/Feb/1985
My local environment displays correctly, it's 3/Feb/1985, but on UAT environment, it display less than 1 day (2/Feb/1985)
I'm using Newtonsoft.Json v10.x.x