fromStr() public static method

public static fromStr ( string s ) : Double
s string
return Double
Example #1
0
 public static Double toFloat(string self, bool check)
 {
     return(FanFloat.fromStr(self, check));
 }
Example #2
0
 public static Double toFloat(string self)
 {
     return(FanFloat.fromStr(self, true));
 }