G
Guest
Is there some way to convert a string which consists of a number(eg. 24) to an integer type? I am trying to get the value from the text property of a text box.
to an integer type? I am trying to get the value from the text property of aowyn said:Is there some way to convert a string which consists of a number(eg. 24)
int n = int.Parse(TextBox1.Text);
to an integer type? I am trying to get the value from the text property of aowyn said:Is there some way to convert a string which consists of a number(eg. 24)