JSONUTIL Deserialize Object with multi layer JSON input.
I have a Jsonstring with Multichild releation and trying to Deserialize the object and assigning to datatable using jsonutil. But JSONUTIL not deserilize the string .
Is it possible to deserialize multilayer jsonstring in JSONUTIL? if yes do we have any example .
Json Format
I have a Jsonstring with Multichild releation and trying to Deserialize the object and assigning to datatable using jsonutil. But JSONUTIL not deserilize the string .
Is it possible to deserialize multilayer jsonstring in JSONUTIL? if yes do we have any example .
Json Format
{ "firstName": "John", "lastName": "Smith", "isAlive": true, "age": 27, "address": { "streetAddress": "21 2nd Street", "city": "New York", "state": "NY", "postalCode": "10021-3100" }, "phoneNumbers": [ { "type": "home", "number": "212 555-1234" }, { "type": "office", "number": "646 555-4567" }, { "type": "mobile", "number": "123 456-7890" } ], "children": [], "spouse": null }