gpt4 book ai didi

c# - 使用 Json.net 将 JSON 对象反序列化为动态对象

转载 作者:IT王子 更新时间:2023-10-29 03:27:42 24 4
gpt4 key购买 nike

是否可以使用 json.net 从 json 反序列化中返回一个动态对象?我想做这样的事情:

dynamic jsonResponse = JsonConvert.Deserialize(json);
Console.WriteLine(jsonResponse.message);

最佳答案

Json.NET 允许我们这样做:

dynamic d = JObject.Parse("{number:1000, str:'string', array: [1,2,3,4,5,6]}");

Console.WriteLine(d.number);
Console.WriteLine(d.str);
Console.WriteLine(d.array.Count);

输出:

 1000
string
6

此处的文档: LINQ to JSON with Json.NET

另见 JObject.ParseJArray.Parse

关于c# - 使用 Json.net 将 JSON 对象反序列化为动态对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4535840/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com