I am very new to C# and this question might sound very stupid. I wonder how I'm going get the integer(user's input) from the textBox1
and use it in if else statement?
Please give some examples
I am very new to C# and this question might sound very stupid. I wonder how I'm going get the integer(user's input) from the textBox1
and use it in if else statement?
Please give some examples
I would use:
or
Try this
You need to parse the value of
textbox.Text
which is a string toint
value. You may use int.TryParse, orint.Parse
orConvert.ToInt32
.TextBox.Text
property is ofstring
type. You may look at the following sample code.int.TryParse
This will return true if the parsing is successful and false if it fails.
Convert.ToInt32
This may throw an exception if the parsing is unsuccessful.
int.Parse
Later you can use
value
in your if statement like.Try with this: