6

I'm attempting to load some data in a portable class library. The data is in JSON format. I need parse and work with this information. Unfortunately, it doesn't appear that System.Json is available. At the same time, I tried to include the Json.Net NuGet package without any luck.

How does one work with JSON data in a portable class library?

Thank you

4

2 回答 2

9

JSON.NET在 PCL可用,请查看以下发行说明:

Json.NET 此版本的主要新功能是可通过 NuGet 获得的可移植类库程序集。支持可移植类库的 NuGet 2.1 使这成为可能。在此处阅读有关 NuGet 2.1的更多信息。

于 2013-04-19T21:24:34.253 回答
6

Json.net pcl 可用——如果你找不到官方的 nuget 版本,那么在 mvvmcross json 插件包或 mvvmcross 二进制 git repo 中会有一个稍微旧的版本。

于 2013-04-19T21:26:31.657 回答