UTorrent Client Api c#



我想使用" utorrentclientapi"。在github上看到它:

https://github.com/latop2604/utorrentclientapi

在Github上,他告诉我们,如果我们想获得洪流列表,我们必须使用这3行代码:

UTorrentClient client = new UTorrentClient("admin", "password");
var response = client.GetList();
List<Torrent> torrents = response.Result.Torrents;

我得到此错误:

无法隐式转换类型" system.collection.generic.ilist'to'system.collections.generic.list'.an explicit转换(您是否缺少演员?)

请参阅我的代码

当我使用" var"时,我不会收到错误。但是我看不到结果

请参阅我的代码

那么我该怎么办来解决这些问题?

您应该使用:

 List<Torrent> torrents = response.Result.Torrents.ToList();

这应该可以正常工作。

相关内容

  • 没有找到相关文章

最新更新