lushixiong
 string  ProductDetails = "{\"size\":\"10\", \"weight\":\"10kg\"}";
            Dictionary<string, string> ProductDetailList=  JsonConvert.DeserializeObject<Dictionary<string, string>>(ProductDetails);
            foreach (var item in ProductDetailList)
            {
                Console.WriteLine(item.Key + " " + item.Value);
            }

  

分类:

技术点:

相关文章:

  • 2021-10-15
  • 2021-09-09
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-08-31
猜你喜欢
  • 2021-08-16
  • 2022-12-23
  • 2022-12-23
  • 2022-01-22
  • 2021-11-22
  • 2022-12-23
相关资源
相似解决方案