I have a JSON output that I need to deserialize into a .NET object:
{ "title": "Stock data",
"raw_data": [
[
1088553600000,
1.3635
],
[
1091232000000,
1.3538
],
[
1093910400000,
1.3563
]]
}
If I’m using JsonConvert, how should I structure my class such that the deserialization works?
If the types for raw_data are both doubles then something like this:
Cool website you might want to check out: http://json2csharp.com/