private void button1_Click(object sender, EventArgs e)
{
int num1, num2,total;
num1 = (Int32.Parse(textBox1.Text));
num2 = (Int32.Parse(textBox2.Text));
//total = (Int32.Parse(textBox3.Text)); este lo quitamos, en el texbox3 no hay nada en teoria
total = num1 + num2;
textBox3.Text = total.ToString(); //Aqui asignamos el resultado a texbox3 convirtiendolo en string
}