Beispiel #1
0
 public Entropy ToUnit(EntropyUnit selectedUnit) => new Entropy(ToTheOutSide(selectedUnit.Unit), selectedUnit);
Beispiel #2
0
 public double As(EntropyUnit ReturnInThisUnit) => (double)ToTheOutSide(ReturnInThisUnit.Unit);
Beispiel #3
0
 public Entropy(int value, EntropyUnit selectedUnit) : base(value, selectedUnit.Unit)
 {
 }
Beispiel #4
0
 public static Entropy From(double value, EntropyUnit unit) => new Entropy(value, unit);
Beispiel #5
0
 public Entropy(decimal value, EntropyUnit selectedUnit) : base(value, selectedUnit.Unit)
 {
 }