public IntegerArithmeticExpressionTerm(IntegerArithmeticExpressionTermType type, string value)
 {
     Type = type;
     Value = value;
 }
Ejemplo n.º 2
0
 public IntegerArithmeticExpressionTerm(IntegerArithmeticExpressionTermType type, string value)
 {
     Type  = type;
     Value = value;
 }
 public void AddTerm(IntegerArithmeticExpressionTermType termType, string value)
 {
     AddTerm(new IntegerArithmeticExpressionTerm(termType, value));
 }
Ejemplo n.º 4
0
 public void AddTerm(IntegerArithmeticExpressionTermType termType, string value)
 {
     AddTerm(new IntegerArithmeticExpressionTerm(termType, value));
 }