下载Newtonsoft.Json.dll
文章来源:https://www.toymoban.com/news/detail-681414.html
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string jsonString = "{\"name\":\"Alice\",\"age\":25}";
JObject jsonObject = JObject.Parse(jsonString);
string name = jsonObject["name"].ToString();
name = jsonObject.Value<string>("name");
int age = jsonObject.Value<int>("age");
Console.WriteLine("Name: " + name); // 输出:Name: Alice
Console.WriteLine("Age: " + age); // 输出:Age: 25
}
}
}
文章来源地址https://www.toymoban.com/news/detail-681414.html
到了这里,关于C#2010 .NET4 解析 json 字符串的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!