.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);
Computational Geometry
Mark de Berg、Otfried Cheong、Marc van Kreveld、Mark Overmars / Springer / 2008-4-16 / USD 49.95
This well-accepted introduction to computational geometry is a textbook for high-level undergraduate and low-level graduate courses. The focus is on algorithms and hence the book is well suited for st......一起来看看 《Computational Geometry》 这本书的介绍吧!
