gpt4 book ai didi

c# - 按键反序列化JSON到C#对象

转载 作者:太空宇宙 更新时间:2023-11-03 19:38:40 26 4
gpt4 key购买 nike

我正在寻找一种反序列化 JSON 的方法,但有些键应该是值,这就是它变得棘手的地方。我喜欢反序列化为:

int valuetoExtract1
int valuetoExtract2
int valuetoExtract3

JSON 看起来像这样:

{
"option1": "someOption1",
"option12": "someOption2",
"id": [
"12345"
],
"filter": "someFilter",
"actualValues": [
{
"otherId": 24,
"id": 12345,
"valuetoExtract1": "123"
},
{
"otherId": 24,
"id": 12345,
"valuetoExtract2": "234"
},
{
"otherId": 24,
"id": 12345,
"valuetoExtract3": "345"
}
]
}

最佳答案

你能试试这个吗:

public class ActualValue
{
public int otherId { get; set; }
public int id { get; set; }
public string valuetoExtract1 { get; set; }
public string valuetoExtract2 { get; set; }
public string valuetoExtract3 { get; set; }
}

public class RootObject
{
public string option1 { get; set; }
public string option12 { get; set; }
public List<string> id { get; set; }
public string filter { get; set; }
public List<ActualValue> actualValues { get; set; }
}

关于c# - 按键反序列化JSON到C#对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57736499/

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