I'm working with a third party system that returns JSON.
I'm trying to work out how to deserialise the following json;
{"getResponse": {
"Results": {
"Result 1": {"Row": [{Name:Somename}]
}
}
I'm using the Newtonsoft JSON library. Anyone know how I can parse this into .Net objects?
obj['Result 1']instead ofobj->Result 1, whatever the equivalent would be in your chosen .net lang.