예제 #1
0
파일: Decimal64.cs 프로젝트: noop-dev/DFP
 public static Boolean operator >=(Decimal64 a, Decimal64 b)
 {
     return(NativeImpl.isGreaterOrEqual(a.Bits, b.Bits));
 }
예제 #2
0
파일: Decimal64.cs 프로젝트: noop-dev/DFP
 public Boolean IsGreaterOrEqual(Decimal64 that)
 {
     return(NativeImpl.isGreaterOrEqual(Bits, that.Bits));
 }