int.parse(string); 一般只有string转int情况下使用(int) 一般是float,double,uint,short这种数值类型强转时使用
(int)为强制转行,尽量少用,建议使用int.parse()
我更精通C++:int a = int('a');C# 刚学。