How do I setup Newtonsoft Json.net to deserialize this text into a .NET object?
[
[
"US\/Hawaii",
"GMT-10:00 - Hawaii"
],
[
"US\/Alaska",
"GMT-09:00 - Alaska"
],
]
For bonus points, what is this kind of structure called in Json. I tried looking for anonymous objects, but didn’t have any luck.
JSON.Net uses
JArrayto allow these to be parsed – see: