I am trying to deserialize the following data format, into some kind of data structure using Dictionaries, in C#.
The structure is the following:
"Obj1": {
"Value": 0.6,
"Data": {
"Data1": 0.1,
"Data2": 0.2,
"Data3": 0.3,
...
}
},
...
Does anyone have any idea on how I could accomplish this?
Thanks.