We have a string that is JSON {"value":1}
that we need to convert to a Manatee.Json.JsonValue
.
Using new JsonValue(value)
returns "{\"value\":1}"
but we are looking for an actual JSON value of {"value":1}
.
We have toyed with JsonObject, and it is possible by converting our JSON to a dictionary, but it would be nice if there is an easier way.