Esempio n. 1
0
 internal NumberType(double v, UnitType units)
 {
     value = v;
     Unit = units;
 }
Esempio n. 2
0
 public NumberType(string v, UnitType units)
 {
     value = double.Parse(v);
     Unit = units;
 }