Is there a way to get the raw/original JSON value from a JToken?
JToken
The problem:
var data = JObject.Parse(@\"{ \"\"SimpleDate\"\":\"\"
There's a solution I found in Json.NET Disable the deserialization on DateTime:
JsonReader reader = new JsonTextReader(new StringReader(j1.ToString())); reader.DateParseHandling = DateParseHandling.None; JObject o = JObject.Load(reader);