gpt4 book ai didi

c# - 在 C# 中使用 fastJson 解析 JSON

转载 作者:行者123 更新时间:2023-11-30 22:03:59 33 4
gpt4 key购买 nike

我无法在现有线程中找到我的问题的答案。我有这个 JSON 字符串:

{
"Count": 4,
"Result:000": {
"Score": 4.571,
"W0DateTime": "2014-08-28 23:00:00",
"W0Value": 1.0164,
"W0Fibonacci": 0,
"Direction": "SHORT",
"StartDate": "2014-08-29 16:30:00",
"EndDate": "2014-08-28 01:00:00",
"BarsCalculated": 80
}
}

如何获取Result:000的内容?

我有这个代码:

...
public Dictionary<string, object> dictionaryObject;

public void jsonInitStructure(string sJsonString)
{
dictionaryObject = (Dictionary<string , object>) fastJSON.JSON.Parse(sJsonString);
}
...

Count 很简单:Convert.ToInt32(dictionaryObject ["Count"]) 但我如何从 Result:000 获取值?例如 (Score, StartDate, EndDate, ...)

最佳答案

你试过转换吗?

var result000 = (Dictionary<string, object>)dictionaryObject["Result:000"];
var result000Score = Convert.ToDouble(result000["Score"]);

关于c# - 在 C# 中使用 fastJson 解析 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25595672/

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