当前位置: 代码迷 >> 综合 >> unity 报错FormatException: Input string was not in the correct format System.Int32.Parse
  详细解决方案

unity 报错FormatException: Input string was not in the correct format System.Int32.Parse

热度:56   发布时间:2024-03-09 15:58:41.0

写代码时需要string转int 因此使用 int.Parse(content); 但发现报错FormatException: Input string was not in the correct format System.Int32.Parse。。。。。。
后来在网上寻找到答案

 string zhi = content;if (int.TryParse(content, out FengFaInt)){
    if (int.Parse(content) > 1000){
    return;}}

后来发现 Int i= System.Int32.Parse(content); 这样写也没有报错 ,到底怎么转换失败得我也不知道

  相关解决方案