0
私はwikipedia apiを使用してデータを照会しており、結果を文字列[]に変換したいと考えています。Json.netを使用してwikipediaのapi応答を変換する
クエリ "テスト"
en.wikipedia.org/w/api.php?action=opensearch&search=test&format=json&callback=spellcheck
戻り、ここで、この結果:
spellcheck(["test",["Test cricket","Test","Testicle","Testudines","Testosterone","Test pilot","Test (assessment)","Testimonial match","Testimony","Testament (band)"]])
私はJson.netドロップまたはタグ "スペルチェック" を無視するために使用することはできますか? 私はこのコードを使用して応答、アプリケーションがクラッシュを変換する場合は、次の(JSONを使用して)
Dictionary<string, string[]> dict = JsonConvert.DeserializeObject<Dictionary<string, string[]>>(response);