fromStr() public static méthode

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