What I am looking for is how to read an integer that was given by the user from the command line (console project). I primarily know C++ and have started down the C# path. I know that Console.ReadLine(); only takes a char/string. So in short I am looking for the integer version of this.
Just to give you an idea of what I'm doing exactly:
Console.WriteLine("1. Add account.");
Console.WriteLine("Enter choice: ");
Console.ReadLine(); // Needs to take in int rather than string or char.
I have been looking for quite a while for this. I have found a lot on C but not C#. I did find however a thread, on another site, that suggested to convert from char to int. I'm sure there has to be a more direct way than converting.
Better way is to use TryParse:
Try this it will not throw exception and user can try again:
Use this simple line:
I would suggest you use
TryParse
:This way, your application does not throw an exception, if you try to parse something like "1q" or "23e", because somebody made a faulty input.
Int32.TryParse
returns a boolean value, so you can use it in anif
statement, to see whether or not you need to branch of your code:To your question: You will not find a solution to read an integer because
ReadLine()
reads the whole command line, threfor returns a string. What you can do is, try to convert this input into and int16/32/64 variable.There are several methods for this:
If you are in doubt about the input, which is to be converted, always go for the TryParse methods, no matter if you try to parse strings, int variable or what not.
Update In C# 7.0 out variables can be declared directly where they are passed in as an argument, so the above code could be condensed into this:
A complete example would look like this:
Here you can see, that the variable
number1
does get initialized even if the input is not a number and has the value 0 regardless, so it is valid even outside the declaring if blockI used
int intTemp = Convert.ToInt32(Console.ReadLine());
and it worked well, here's my example: