I\'m having to perform some custom deserialization with JSON.NET and I just found that it\'s treating the key values in a JToken as case sensitive. Here\'s some code:
You can cast JToken to JObject and do this:
string ver = ((JObject)token).GetValue("version", StringComparison.OrdinalIgnoreCase)?.Value();