gpt4 book ai didi

c# - 如何解析json值长字符

转载 作者:行者123 更新时间:2023-11-30 16:06:34 25 4
gpt4 key购买 nike

<分区>

我将尝试解析 JSON 字符串,但解析 JSON 字符串中的“长”字符时出现问题。

JSON代码如下

{ "valid": 1, "delta": 0, "time": 23755, "date": 200815, "fix": 2, "status": 1, "sats": 12, "lat": 37529922, "long": 126898053, "speed": 874, "heading": 0, "alt": 171300 }

我想获取纬度和经度值,但我无法获取值,因为长字符是关键字

我的代码如下

using (WebClient wc = new WebClient())
{
string json = wc.DownloadString(sb.ToString());
dynamic temp = JsonConvert.DeserializeObject(json);
Gps = new GpsInfo();
Gps.latY = temp.lat;
Gps.lonX = temp.long; //Error long type is keyword
SettingGpsChart(Gps);
}

如何解析 json 值的 long 和 lat?

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