.NET的JSON库 JSON.NET
- 授权协议: MIT
- 开发语言: .NET
- 操作系统: Windows
- 软件首页: http://www.codeplex.com/Json
- 软件文档: http://james.newtonking.com/projects/json/help/
软件介绍
这是一个.NET框架使用的 JSON 解析和操作的类库。
示例代码:
Product product = new Product();product.Name = "Apple";
product.ExpiryDate = new DateTime(2008, 12, 28);
product.Price = 3.99M;
product.Sizes = new string[] { "Small", "Medium", "Large" };string output = JsonConvert.SerializeObject(product);
//{
// "Name": "Apple",
// "ExpiryDate": "2008-12-28T00:00:00",
// "Price": 3.99,
// "Sizes": [
// "Small",
// "Medium",
// "Large"
// ]
//}Product deserializedProduct = JsonConvert.DeserializeObject(output);
The Art of Computer Programming, Volume 4, Fascicle 3
Donald E. Knuth / Addison-Wesley Professional / 2005-08-05 / USD 19.99
Finally, after a wait of more than thirty-five years, the first part of Volume 4 is at last ready for publication. Check out the boxed set that brings together Volumes 1 - 4A in one elegant case, and ......一起来看看 《The Art of Computer Programming, Volume 4, Fascicle 3》 这本书的介绍吧!
