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));
 }