I have two text box
Textbox1and Textbox2 and button1
textbox1.text = 1;
textbox2.text = 0;
Now I want when I click on button1.textbox2's data increment. this is my code
for (int i = 0; i <= 5; i++)
{
textBox2.Text = textBox1.Text[i].ToString();
}