标签:
Cannot cast from source type to destination
我用Object 转 int 会出现这个错误提示
例如 :
object p;
int pp = (int)p; //这句话会报错
临时的解决办法,原因并不知道
int pp = int.parse(p.tostring());
Unity 小问题
原文地址:http://www.cnblogs.com/SHOR/p/5276428.html