String

文字列を数値に変換する

string str = "10";
int i = int.Parse(str);
print(str.GetType());
print(i.GetType());