public Boolean IsEqual(Decimal64 that) { UInt64 aBits = Bits, bBits = that.Bits; return(aBits == bBits || NativeImpl.isEqual(aBits, bBits)); }