fromStr() публичный статический Метод

public static fromStr ( string s ) : Long
s string
Результат Long
Пример #1
0
 public static Long toInt(string self, long radix)
 {
     return(FanInt.fromStr(self, radix, true));
 }
Пример #2
0
 public static Long toInt(string self, long radix, bool check)
 {
     return(FanInt.fromStr(self, radix, check));
 }
Пример #3
0
 public static Long toInt(string self)
 {
     return(FanInt.fromStr(self, 10, true));
 }