예제 #1
0
파일: Decimal.cs 프로젝트: yallie/ApexSharp
 public long round(RoundingMode roundingMode)
 {
     return(Self.round(roundingMode));
 }
예제 #2
0
파일: Decimal.cs 프로젝트: yallie/ApexSharp
 public decimal setScale(int scale, RoundingMode roundingMode)
 {
     return(Self.setScale(scale, roundingMode));
 }
예제 #3
0
파일: Decimal.cs 프로젝트: yallie/ApexSharp
 public decimal divide(decimal divisor, int scale, RoundingMode roundingMode)
 {
     return(Self.divide(divisor, scale, roundingMode));
 }