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();
2022-09-29 18:14:39
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();