我正在學習winforms vb.net製作一個獲取一些匯率的應用程序。我正在努力與json.net(牛頓)。我的應用程序不會中斷。我可以看到當調試昏暗price
出現nothing
,但我不明白爲什麼! :P有人可以幫忙嗎?簡單的Json.Net SelectToken - 我做錯了什麼?
謝謝:)
Dim client As New System.Net.WebClient
client.Headers.Add("User-Agent", "Nobody")
Dim response = client.DownloadString(New Uri("http://pubapi.cryptsy.com/api.php?method=singlemarketdata&marketid=131"))
Dim o As JObject = JObject.Parse(response)
Dim price As String = CStr(o.SelectToken("return[0].markets[0].DEM[0].lasttradeprice[0]"))
Label2.Text = price
謝謝。大聲笑知道這將是愚蠢的東西:) –