0

我想使用“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”时,我没有收到错误。但我看不到结果

查看我的代码

那么我能做些什么来解决这些问题呢?

4

1 回答 1

1

你应该使用:

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

这应该工作得很好。

于 2019-09-27T00:45:45.247 回答