コード例 #1
0
 public string Visit(Nand expr)
 {
     return(string.Format("({0}) NAND ({1})", expr.First.Accept(this), expr.Second.Accept(this)));
 }
コード例 #2
0
 public bool Visit(Nand expr)
 {
     return(!(Eval(expr.First) && Eval(expr.Second)));
 }