public bool Equals(byte[] x, byte[] y)
 {
     return(ByteArrayHelper.Compare(x, y));
 }
 public int GetHashCode(byte[] obj)
 {
     return(ByteArrayHelper.ComputeHash(obj));
 }