public string ToHex()
 {
     return(Toolbox.ToHex(Hash));
 }
 public bool Equals(byte[] other)
 {
     return(other == null || other.Length != 20 ? false : Toolbox.ByteMatch(Hash, other));
 }