fromStr() public static method

public static fromStr ( string s ) : Long
s string
return Long
Example #1
0
 public static Long toInt(string self, long radix)
 {
     return(FanInt.fromStr(self, radix, true));
 }
Example #2
0
 public static Long toInt(string self, long radix, bool check)
 {
     return(FanInt.fromStr(self, radix, check));
 }
Example #3
0
 public static Long toInt(string self)
 {
     return(FanInt.fromStr(self, 10, true));
 }