I want to do:
private void textBox3_Click(object sender, EventArgs e)
{
if (true)
{
this.textBox3.Clear();
}
else
{
this.textBox3.ResetText();
}
}
But in the else statement, this.textBox3.ResetText(); is giving unreachable code.