Cannot cast from source type to destination
我用Object 转 int 会出现这个错误提示
例如 :
object p;
int pp = (int)p; //这句话会报错
临时的解决办法,原因并不知道
int pp = int.parse(p.tostring());
时间: 2024-10-10 00:36:15
Cannot cast from source type to destination
我用Object 转 int 会出现这个错误提示
例如 :
object p;
int pp = (int)p; //这句话会报错
临时的解决办法,原因并不知道
int pp = int.parse(p.tostring());