ASP.NET Newtonsoft 序列化反序列化

2021-05-17 10:28

阅读:352

标签:ges   .net   convert   技术分享   src   ima   .com   ring   img   

1.NuGet 安装 Newtonsoft

2.调用方法

一 NuGet 安装 Newtonsoft

技术分享

二 调用方法

Student stu = new Student();
            stu.ID = "123";
            stu.Name = "jack";
            string json = JsonConvert.SerializeObject(stu);

            Student obj = JsonConvert.DeserializeObject(json);

 

ASP.NET Newtonsoft 序列化反序列化

标签:ges   .net   convert   技术分享   src   ima   .com   ring   img   

原文地址:http://www.cnblogs.com/ligenyun/p/7743968.html


评论


亲,登录后才可以留言!