int StrToInteger(string value)
Converts string containing the value character representation into a value of the int (integer) type.
値の文字表現を含んている文字列を int (整数)型の値に変換します。
Parameters:
パラメータ:
value - String containing the integer character representation format.
整数文字を表現したフォーマットを含んでいる文字列。
Sample:
サンプル:
int var1=StrToInteger("1024");
|