写代码时需要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); 这样写也没有报错 ,到底怎么转换失败得我也不知道