public Entropy ToUnit(EntropyUnit selectedUnit) => new Entropy(ToTheOutSide(selectedUnit.Unit), selectedUnit);
public double As(EntropyUnit ReturnInThisUnit) => (double)ToTheOutSide(ReturnInThisUnit.Unit);
public Entropy(int value, EntropyUnit selectedUnit) : base(value, selectedUnit.Unit) { }
public static Entropy From(double value, EntropyUnit unit) => new Entropy(value, unit);
public Entropy(decimal value, EntropyUnit selectedUnit) : base(value, selectedUnit.Unit) { }