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?