我想将一千个分离的值转换为整数,但是我得到一个例外.
double d = Convert.ToDouble("100,100,100");
工作正常,得到d = 100100100
int n = Convert.ToInt32("100,100");
正在获得一个格式异常
Input string was not in a correct format
为什么?