json.net序列化的多个不在数组中的对象



我有这个类似JSON的字符串。

{
  "62": {
    "unit_id": "431",
    "staff_id": "444",
    "ext_id": "0",
    "barcode": "1",
    "currency": "EUR",
    "amount": "163.27",
    "status": "Won",
    "won": "43.27",
    "jackpot": "120.00"
  },
  "63": {
    "unit_id": "432",
    "staff_id": "445",
    "ext_id": "0",
    "barcode": "258765424",
    "currency": "EUR",
    "amount": "0.00",
    "status": "Lost",
    "won": "0.00",
    "jackpot": "0.00"
  }
}

我想序列化每个属性" 62"," 63"到模型。

我找到了它。我使用了Jobight.Parse(JSON),然后可以迭代儿童属性。

相关内容

  • 没有找到相关文章

最新更新