I have a JObject and want to format that JObject to an Object. My JSON stirng is
{"Prop1":"Prop1Value","Prop2":1,"Prop3":"Prop3Value","dtProp":"2019-12-30T09:59:48"}
I want this JSON string to be formatted as
{
Prop1 = "Prop1Value",
Prop2 = 1,
Prop3 = "Prop3Value",
dtProp = "2019-12-30T09:59:48"
}
How can we do this? My JSON string is not a strongly typed Object. But I want to convert that into this format. My Json string will not be of same at every time. It changes each time. Can I create an object dynamically for this scenario?