Esempio n. 1
0
 public ComparisonOperator(T arg1, T arg2, BooleanOperatorTypeEnum booleanNodeType) : this(booleanNodeType)
 {
     this.SetArgument1(arg1);
     this.SetArgument2(arg2);
 }
Esempio n. 2
0
 public ComparisonOperator(BooleanOperatorTypeEnum booleanNodeType)
 {
     this.booleanNodeType = booleanNodeType;
 }