Newtonsoft.json.dll的用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Newtonsoft.json.dll的用法相关的知识,希望对你有一定的参考价值。
下载地址:http://json.codeplex.com/
static void Main(string[] args)
{
string jsonTest = "[{‘name‘:‘张三‘,‘age‘:20},{‘name‘:‘李四‘,‘age‘:19}]";
var stu = JsonConvert.DeserializeObject<List<Student>>(jsonTest);
string str = JsonConvert.SerializeObject(stu);
}
public class Student
{
public string Name { get; set; }
public int age { get; set; }
}
以上是关于Newtonsoft.json.dll的用法的主要内容,如果未能解决你的问题,请参考以下文章
“Newtonsoft.Json.JsonConvert”类型存在于“Newtonsoft.Json.dll”和“NuGetApi2.dll”中
FineUI中Newtonsoft.Json版本报错解决办法
Newtonsoft Json.NET 版本不兼容(DLL 地狱)