Given json like this:
[["Rating (out of 5)","3"],["Date taken","Mon, 03 Mar 2003 03:04:03 GMT"]]
What is the best way to deserialize it into something like Dictionary<string, string> or do I need to use a different data structure?
I would prefer to use the .net serializer, but will consider other options if this does not work.
source share