Convert.ToInt32是什么意思 干什么用的 求大神解答
类型转换 比如
double x=15.6612;
int y=Convert.ToInt32(x) 这就是把double类型x显式转换成int类型
也可以用 int y=(int)x 进行转换