How can I deserialize the following JSON into a custom object using C# and Json.NET:
[ {
'data': [
[ '100473','3481282801.0' ],
[ '100472','3481275600.0' ],
[ '100471','3481273800.0' ],
[ '100470','3481263900.0' ],
[ '100469','3481263000.0' ]
],
'error': '',
'statement_time': 0.00440700000000000030,
'total_time': 0.00475200000000000010
} ]
It is an array containing a single object. To make things more interesting the object contains an array of arrays. (I have no control over the format, unfortunately.) I am relatively new to JSON and thought I'd try Json.NET. I am open to other JSON frameworks if it would make things easier.