我想使用“UTorrentClientApi”。在github上看到它:
https://github.com/latop2604/UTorrentClientApi
在 github 上他告诉我们如果要获取 Torrent 列表,我们必须使用这 3 行代码:
UTorrentClient client = new UTorrentClient("admin", "password");
var response = client.GetList();
List<Torrent> torrents = response.Result.Torrents;
我收到此错误:
无法将类型“system.collection.generic.IList”隐式转换为“System.Collections.Generic.List”。存在显式转换(您是否缺少演员表?)
当我使用“var”时,我没有收到错误。但我看不到结果
那么我能做些什么来解决这些问题呢?