Exemple #1
0
 public number()
 {
     this.val  = "";
     this.type = Calculator.number.types.NULL;
 }
Exemple #2
0
 public number(string v, Calculator.number.types t)
 {
     this.val  = v;
     this.type = t;
 }