Hopefully can someone help me with an example, because I'm new in JSON: From a webservice I receive a JSON string. I understand it is created from a datatable. How do I manage in C# to Deserialize this to a dataset? Maybe someone has something for me.
{
"DataToJohnson": {
"0": {
"maat_id": "1",
"maat": "11"
},
"1": {
"maat_id": "2",
"maat": "11+"
},
"2": {
"maat_id": "3",
"maat": "12+"
},
"3": {
"maat_id": "4",
"maat": "12/13"
}
}
}
Thanks!
Raymond