i have a numerical textbox which I need to add it\'s value to another number I have tried this code
String add = (mytextbox.Text + 2)
but
You can use the int.Parse method to parse the text content into an integer:
int.Parse
String add = (int.Parse(mytextbox.Text) + 2).ToString();