Beispiel #1
0
 public EquationNode(EquationNodeType type, char ch)
 {
     this.type  = type;
     this.value = ch.ToString();
 }
Beispiel #2
0
 public EquationNode(EquationNodeType type)
 {
     this.type = type;
 }
Beispiel #3
0
 public EquationNode(EquationNodeType type, string value)
 {
     this.type  = type;
     this.value = value;
 }