public bool Add(Torrent torrent)
 {
     return this.Add(new Torrent[] { torrent });
 }
 public bool Equals(Torrent other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other._hash, this._hash);
 }
 public bool Add(Torrent torrent)
 {
     return true;
 }