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.

相关文章

AJAX是一种基于JavaScript和XML的技术,能够使网页实现异步交...
在网页开发中,我们常常需要通过Ajax从后端获取数据并在页面...
在前端开发中,经常需要循环JSON对象数组进行数据操作。使用...
AJAX(Asynchronous JavaScript and XML)是一种用于创建 We...
AJAX技术被广泛应用于现代Web开发,它可以在无需重新加载页面...
Ajax是一种通过JavaScript和HTTP请求交互的技术,可以实现无...