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?)
when I use "var" I don't receive error.But I can't see the result
so what can I do to solve these problems?
You should use :
This should work just fine.