码迷,mamicode.com
首页 > Web开发 > 详细

Newtonsoft.Json 使用

时间:2015-03-09 15:49:08      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

1.JSON转List/Class

使用  JsonConvert.DeserializeObject

string jsonStr = "[{\"id\":0,\"name\":\"刘0\",\"age\":null},{\"id\":0,\"name\":\"刘0\",\"age\":null}]";
List<className> cn = JsonConvert.DeserializeObject<List<className>>(jsonStr);

 

2. List/Class转JSON

使用  JsonConvert.SerializeObject

string jsonStr = JsonConvert.SerializeObject(cn);

Newtonsoft.Json 使用

标签:

原文地址:http://www.cnblogs.com/liuph/p/4323504.html

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