C#中三种string转int 一:使用强制转换(int)浮点数(不适合string) 二:使用Convert.ToInt32(string) 三:使用Int.Parse(string) 或者int.tryParse(string,out int);