UTorrent Client Api c#

1.5k Views Asked by At

I want to use "UTorrentClientApi". see it on github:

https://github.com/latop2604/UTorrentClientApi

On github He told that if we want to get Torrent lists , we must use these 3 lines of code:

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

I get this error:

Cannot implicitly convert type "system.collection.generic.IList'to 'System.Collections.Generic.List'.An explicit conversion exists (are you missing a cast?)

see my code

when I use "var" I don't receive error.But I can't see the result

See my Code

so what can I do to solve these problems?

1

There are 1 best solutions below

0
On

You should use :

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

This should work just fine.