Frage

I'm getting this exception

FormatException was unhandled, input string was not in a correct format.

at the following statement

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

what should I do to solve it?

War es hilfreich?

Lösung

I would suggest the following:

int parsedInt = 0;

if (int.TryParse(Console.ReadLine(), out parsedInt))
{
    //do success work
}
else
{
    //do failed work
}
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top