Json.NET,serialize all things

http://json.codeplex.com/

Json.NET

Json.NET is a popular high-performance JSON framework for .NET

Features

  • Flexible JSON serializer for converting between .NET objects and JSON
  • LINQ to JSON for manually reading and writing JSON
  • High performance,faster than .NET's built-in JSON serializers
  • Write indented,easy to read JSON
  • Convert JSON to and from XML
  • Supports .NET 2,.NET 3.5,.NET 4,Silverlight,Windows Phone and Windows 8 Metro.

The JSON serializer is a good choice when the JSON you are reading or writing maps closely to a .NET class.

LINQ to JSON is good for situations where you are only interested in getting values from JSON,you don't have a class to serialize or deserialize to,or the JSON is radically different from your class and you need to manually read and write from your objects.

相关文章

文章浏览阅读2.4k次。最近要优化cesium里的热力图效果,浏览...
文章浏览阅读1.2w次,点赞3次,收藏19次。在 Python中读取 j...
文章浏览阅读1.4k次。首字母缩略词 API 代表应用程序编程接口...
文章浏览阅读802次,点赞10次,收藏10次。解决一个JSON反序列...
文章浏览阅读882次。Unity Json和Xml的序列化和反序列化_uni...