fromStr() public static method

public static fromStr ( string s ) : BigDecimal
s string
return BigDecimal
Ejemplo n.º 1
0
 public static BigDecimal toDecimal(string self, bool check)
 {
     return(FanDecimal.fromStr(self, check));
 }
Ejemplo n.º 2
0
 public virtual BigDecimal readDecimal()
 {
     return(FanDecimal.fromStr(readUtfString(), true));
 }
Ejemplo n.º 3
0
 public static BigDecimal toDecimal(string self)
 {
     return(FanDecimal.fromStr(self, true));
 }