.NET下 JSON 的一些常用操作
摘要:.NET下 JSON 的一些常用操作1.JSON的序列化和反序列化Newtonsoft.Json dll 下载地址http://json.codeplex.com/?using System;using System.Collections.Generic;using System.Linq;using System.Text;using Newtonsoft.Json;namespace PlayJSON{class Program{static void Main(string[] args){List list = new List() { new StuInfo{StuName=&qu
阅读全文
posted @ 2013-08-13 17:14