FanDecimal defines the methods for Fan.Sys.BigDecimal. The actual class used for representation is Fan.Sys.BigDecimal
Example #1
0
 public static BigDecimal toDecimal(string self, bool check)
 {
     return(FanDecimal.fromStr(self, check));
 }
Example #2
0
 public virtual BigDecimal readDecimal()
 {
     return(FanDecimal.fromStr(readUtfString(), true));
 }
Example #3
0
 public static BigDecimal toDecimal(string self)
 {
     return(FanDecimal.fromStr(self, true));
 }