示例#1
0
 public bool Equals(ITrackerGuard other)
 {
     return(this.CompareTo(other) == 0);
 }
 public RemoveTrackerGuardAction(string hash, Address target, ITrackerGuard guard)
     : base(hash, target)
 {
     this.Guard = guard;
 }
示例#3
0
 public virtual int CompareTo(ITrackerGuard other)
 {
     return(this.Name.CompareTo(other.Name));
 }