在C#中获取JSON对象中指定属性的值,可以使用Newtonsoft.JSON库的JObject类
using Newtonsoft.Json.Linq;
using System;
public class Program
{
public static void Main(string[] args)
{
string json = @"{
'Name': 'John',
'age': 30,
'City': 'New York'
}";
// 解析JSON对象
JObject jsonObject = JObject.Parse(json);
// 获取指定属性的值
string name = (string)jsonObject["Name"];
int age = (int)jsonObject["Age"];
string city = (string)jsonObject["City"];
// 打印属性值
Console.WriteLine("Name: " + name);
Console.WriteLine("Age: " + age);
Console.WriteLine("City: " + city);
}
}
在上面的示例中,我们首先使用JObject.Parse()方法将JSON字符串解析为JObject对象。
然后,我们可以使用索引器([])来获取指定属性的值。
需要注意,我们需要将属性值转换为适当的类型,例如将Age属性转换为int类型。
最后,我们可以打印属性的值