JSON to C# Object (JSON Deserializer)
deserializing the JSON document back to a c# object?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mageshwaran RPosted Nov 28, 2019, 11:48 PM
Ashutosh GuptaPosted Nov 28, 2019, 10:36 AM
Dhara PatelPosted Nov 28, 2019, 4:57 AM
Jaimin ShethiyaPosted Nov 28, 2019, 4:25 AM
You have first install the Newtonsoft.Json package from nuget
and after use below code
var result = JsonConvert.DeserializeObject
If you don't know what is the json string then you can use below code
var result = JsonConvert.DeserializeObject
Guest UserPosted Nov 28, 2019, 4:22 AM