fastJSON 2
- 授权协议: GPLv2
- 开发语言: Sliverlight
- 操作系统: Windows
- 软件首页: http://fastjson.codeplex.com/
- 软件文档: http://www.codeproject.com/Articles/159450/fastJSON
软件介绍
fastJSON 是 Sliverlight 版本的 JSON 处理器。
示例代码:
// to serialize an object to string
string jsonText = fastJSON.JSON.Instance.ToJSON(c);
// to deserialize a string to an object
var newobj = fastJSON.JSON.Instance.ToObject(jsonText);
