C#中怎样将String类型转换为int型

2024年12月04日 19:05
有1个网友回答
网友(1):

string newString = "123456789";
int MyInt = Convert.ToInt32(newString);