标签:
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);
标签:
原文地址:http://www.cnblogs.com/liuph/p/4323504.html