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 should I be using a different data structure?
I'd probably prefer to use the .net Serializer but will consider other options if this wont work.