예제 #1
0
 public bool SetExpression(string _exp)
 {
     //Clear the Previous Exp
     _exp_parser.Clear();
     //Now Parse the Exp
     _exp_tree = _exp_parser.ParseExpression(_exp);
     return(true);
 }