0
Problem with Convert.ToInt32
how to resolve the problem when you enter a string and not a integer ? https://code.sololearn.com/chF8mhtKvFUq/#cs Thanks !
3 Respuestas
+ 1
It works fine on me.
+ 1
Either use: int.TryParse
Or: Try/Except
+ 1
Thanks. I have found