public static Decimal64 operator -(Decimal64 value) { return(new Decimal64(DotNetImpl.Negate(value.Bits))); }
public Decimal64 Negate() { return(new Decimal64(DotNetImpl.Negate(Bits))); }