Exemple #1
0
 public static Decimal64 operator /(Decimal64 a, Int64 b)
 {
     return(new Decimal64(NativeImpl.divideByInt64(a.Bits, b)));
 }
Exemple #2
0
 public Decimal64 DivideByInteger(Int64 b)
 {
     return(new Decimal64(NativeImpl.divideByInt64(Bits, b)));
 }