Esempio n. 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            string       text = textBox2.Text + "#";
            BoolEquation eq   = new BoolEquation(ref text, true);

            textBox3.Text = eq.ReturnValue().ToString();
        }
Esempio n. 2
0
 public BoolConst(bool value, bool sign)
 {
     this.value = BoolEquation.Conjunction(value, sign);
 }