Get integer from Textbox
问题 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 回答1: You need to parse the value of textbox.Text which is a string to int value. You may use int.TryParse, or int.Parse or Convert.ToInt32. TextBox.Text property is of string type. You may look at the following sample code. int.TryParse This will return true if the parsing is successful and false if it