I have a string in the form of
"{value: "some"}"
(Obtained by serializing object but without quotes on the property name) OR
"{"value": "some"}"
I wish to convert it a object (Similar to new {value = "some"}
)
And not JObject {"value" = "some"}
Any help?