How to describe the structure of classes for parsing such a json-string coming from VKontakte servers using Json.Net?
{ "ts":1820350874, "updates":[ [ 4, 1619489, 561, 123456, 1464958914, " ... ", "hello", { "attach1_type":"photo", "attach1":"123456_414233177", "attach2_type":"audio", "attach2":"123456_456239018" } ] ] } I tried to make it through a special insert in Visual Studio - I swear that there is an incorrect Json.
Convert everything to object'y, and only then convert?
Last time I decided that the updates array was described as List>, and when I needed to get the value I converted it to a specific type.