internal NumberType(double v, UnitType units) { value = v; Unit = units; }
public NumberType(string v, UnitType units) { value = double.Parse(v); Unit = units; }