I am trying to use the Json.Net converter for this strange json:
{
"Key1": {
"id": "1",
"name": "one"
},
"Key2": {
"id": "2",
"name": "two"
},
...
"CouldBeAnything": {
"id": "n",
"name": "CouldBeAnything"
}
}
If I use the json to xml source generation, I get objects with with properties called Key1, Key2 etc. That doesn't work as I need a list of those keys and values associated with them. Is there a way to create an object that can be serialized directly? Thanks in advance.