C# json字符串转化成Dictionary

2021-01-02 06:27

阅读:595

标签: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.DeserializeObjectobject, 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.Valueint>()).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


评论


亲,登录后才可以留言!