I'd like to deserialize the following JSON with .Net 3.1
My difficulty is the "1234" key for this object is unknown when this object is serialized. How could I deserialize this? The values I want to keep are the nested "first_name" and "last_name" attributes
{
"1234":{
"id":1234,
"first_name":"John",
"last_name":"Doe"
}
}
Any help is appreciated!