C#中对json数据进行取值
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
1、添加引用Newtonsoft.Json.dll,需要升级NuGet,在项目中右击项目名,选择“管理NuGet程序包”
2、引用:
using Newtonsoft.Json.Linq;
3、实现代码:
string s = "{\"model\":\"2\"}";
JObject studentsJson = JObject.Parse(s);
string model = studentsJson["model"].ToString();
GitHub 加速计划 / js / json
18
5
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:2 个月前 )
960b763e
5 个月前
8c391e04
8 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)