Refernces: Int32.TryParse Method




Source


string test = "12345"

int result;

bool isParsed = Int32.TryParse(test, out result);


* 입력한 문자열값이 정상이면 isParsed = true, result는 변환된 int값이 입력됨.

* 입력한 문자열값이 비정상이면 isParsed = false, result는 0이 입력됨.


반응형

+ Recent posts