我在 C# 中获取 json 值时遇到了一些问题。
http://i.stack.imgur.com/Uxn8e.png
这是有问题的代码:
var json2 = new WebClient().DownloadString("http://fetch.json.url.here" + Input_Textbox.Text);
JObject o2 = JObject.Parse(json2);
string he_ident = (string)o2["he_ident"];
string le_ident = (string)o2["le_ident"];
Console.WriteLine(he_ident);
Console.WriteLine(le_ident);
第 204 行是:JObject o2 = JObject.Parse(json2);
json是这样的:[{"le_ident":"06L","he_ident":"24R"},{"le_ident":"06R","he_ident":"24L"},{"le_ident":"07L","he_ident":"25R"},{"le_ident":"07R","he_ident":"25L"}]
我也尝试过只使用一组 le_ident 和 he_ident,例如,[{"le_ident":"06L","he_ident":"24R"}]
但它仍然会引发相同的错误。
有任何想法吗?