Deserialize Json in C # in records / columns format

0

Hello to the community, I need to deserialize a Json in a format I do not know :: Home * I use JToken or serialization, but I do not see a solution with these two ...

{{
  "product": {
    "columns": [
      "product_id",
      "name"
     ],
    "records": [
      [
        1,
        "Product 1"
      ],
      [
        2,
        "Product 2"
      ]
     ]
}}
    
asked by anonymous 07.05.2018 / 21:14

0 answers