Exemplo n.º 1
0
 public static Boolean operator >(Decimal64 a, Decimal64 b)
 {
     return(NativeImpl.isGreater(a.Bits, b.Bits));
 }
Exemplo n.º 2
0
 public Boolean IsGreater(Decimal64 that)
 {
     return(NativeImpl.isGreater(Bits, that.Bits));
 }