格式异常在int.parse中未处理

时间:2012-09-05 15:51:02

标签: c# formatexception

我收到此异常

  

FormatException未处理,输入字符串格式不正确。

在以下声明中

int amnt = int.Parse(Console.ReadLine());    

我该怎么做才能解决它?

1 个答案:

答案 0 :(得分:0)

我建议如下:

int parsedInt = 0;

if (int.TryParse(Console.ReadLine(), out parsedInt))
{
    //do success work
}
else
{
    //do failed work
}