public Form1() { InitializeComponent(); calc = new CalcBase(); }
private void clear_Click(object sender, EventArgs e) { textBox1.Text = "0"; calc = new CalcBase(); }
private void clear_clicked(object sender, EventArgs e) { calc = new CalcBase(); textBox1.Text = "0"; }