码迷,mamicode.com
首页 > Windows程序 > 详细

C# json字符串转化成Dictionary

时间:2020-07-02 16:07:37      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:play   spl   OLE   dha   转化   ali   模型   select   write   

var json = @"{
                           ‘DisplayName‘: ‘新一代算法模型‘,
                           ‘CustomerType‘: 1,
                           ‘Report‘: {
                             ‘TotalCustomerCount‘: 1000,
                             ‘TotalTradeCount‘: 50
                           },
                           ‘CustomerIDHash‘: [1,2,3,4,5]
                         }";

            var dict = JsonConvert.DeserializeObject<Dictionary<object, object>>(json);
            //取值方式
            Console.WriteLine(dict["DisplayName"].ToString());
            var report = dict["Report"] as JObject;
            var totalCustomerCount = report["TotalCustomerCount"];

            Console.WriteLine($"totalCustomerCount={totalCustomerCount}");

            var arr = dict["CustomerIDHash"] as JArray;
            var list = arr.Select(m => m.Value<int>()).ToList();
            Console.WriteLine($"list={string.Join(",", list)}");
  

 

C# json字符串转化成Dictionary

标签:play   spl   OLE   dha   转化   ali   模型   select   write   

原文地址:https://www.cnblogs.com/lbonet/p/13225265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!