将JSON数据转换为C#对象可以通过使用Json.NET库中的JsonConvert类来实现。首先确保项目中引用了Json.NET库,然后可以按照以下步骤来进行转换:
{
"name": "John Doe",
"age": 30,
"isStudent": true
}
则可以定义一个对应的C#类:
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public bool IsStudent { get; set; }
}
string json = "{\"name\":\"John Doe\",\"age\":30,\"isStudent\":true}";
Person person = JsonConvert.DeserializeObject<Person>(json);
现在,变量person将包含JSON数据转换后的C#对象,可以通过访问其属性来获取相应的值。