我收到此异常
FormatException未处理,输入字符串格式不正确。
在以下声明中
int amnt = int.Parse(Console.ReadLine());
我该怎么做才能解决它?
答案 0 :(得分:0)
我建议如下:
int parsedInt = 0;
if (int.TryParse(Console.ReadLine(), out parsedInt))
{
//do success work
}
else
{
//do failed work
}