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