巨型炸弹API Json

时间:2016-07-11 13:05:55

标签: c# json api json.net

我正在尝试使用Giant Bomb API。我还使用Newtonsoft.Json来反序列化响应对象。当我尝试将响应转换为类时,我遇到了问题。看起来像阵列的东西我有问题。我不明白究竟是什么以及哪些使用ref我应该使用它来使它工作...

以下是语法:public ApiSearchResult[] results { get; set; }

以下是教程:http://social.technet.microsoft.com/wiki/contents/articles/26920.winrt-using-giant-bomb-api-to-get-games-information.aspx

1 个答案:

答案 0 :(得分:0)

查看文档后,似乎ApiSearchResult应为Result。尝试将public ApiSearchResult[] results { get; set; }更改为 public Result[] results { get; set; }