コード例 #1
0
ファイル: Program.cs プロジェクト: CMatri/TorrentClientCLI
 public Program()
 {
     fileName      = "C:\\Users\\Connor\\Downloads\\bunny.torrent";
     activeTorrent = new ActiveTorrent(fileName);
     activeTorrent.StartDownload();
     Console.ReadLine();
 }
コード例 #2
0
 public ConnectionManager(ActiveTorrent torrent)
 {
     this.peers   = new List <Peer>();
     this.torrent = torrent;
 }