This is the code.. They are definitely not out of scope.
private void button1_Click(object sender, EventArgs e) { int a,b; a = int.Parse(textBox1.Text); b = int.Parse(textBox2.Text); int c = a + b; textBox3.Text = c.ToString(); }// breakpoint
So, you have a breakpoint such as commented above on the closing brace, but still cannot see the vars values when hovering?