示例#1
0
文件: Decimal64.cs 项目: noop-dev/DFP
 public static Decimal64 operator /(Decimal64 a, Int32 b)
 {
     return(new Decimal64(NativeImpl.divideByInt32(a.Bits, b)));
 }
示例#2
0
文件: Decimal64.cs 项目: noop-dev/DFP
 public Decimal64 DivideByInteger(Int32 b)
 {
     return(new Decimal64(NativeImpl.divideByInt32(Bits, b)));
 }