现在关于json的读写问题,有许许多多的解决方法,因人而异,根据实际问题去选择自己想要的最容易方法.我觉得自带的Newtonsoft.Json是个不错的选择,随便写两个例子吧! 一:关于简单的json序列化和反序列化,可以用Newtonsoft.Json+实体类去解决.首先搞个jsonhelp类 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Run…