当前位置: 代码迷 >> 综合 >> 利用 Newtonsoft 来为类数组 统计数据
  详细解决方案

利用 Newtonsoft 来为类数组 统计数据

热度:34   发布时间:2023-12-06 01:15:48.0
  var jsonStr = "[{\"typeid\":2,\"count\":1},{\"typeid\":-99,\"count\":0}]";var data = JArray.Parse(jsonStr);int count = data.Aggregate(0, (current, s) => current +=(int)s["count"]); 

count为1