Example #1
0
        public ForcePerLengthUnit(PreFix SI, ForcePerLengthUnit unit)
        {
            Name = "ForcePerLength";
            Unit = unit.Unit.Copy();

            SetCombined(SI);
            SetNewSymbol(SI);
        }
Example #2
0
        public ForcePerLengthUnit(ForcePerLengthUnit unit, string NewSymbol = "Empty", decimal correction = 1)
        {
            Name = "ForcePerLength";
            Unit = unit.Unit.Copy();

            SetCombined(correction);
            SetNewSymbol(NewSymbol);
        }
Example #3
0
 public ForcePerLength ToUnit(ForcePerLengthUnit selectedUnit) => new ForcePerLength(ToTheOutSide(selectedUnit.Unit), selectedUnit);
Example #4
0
 public double As(ForcePerLengthUnit ReturnInThisUnit) => (double)ToTheOutSide(ReturnInThisUnit.Unit);
Example #5
0
 public static ForcePerLength From(double value, ForcePerLengthUnit unit) => new ForcePerLength(value, unit);
Example #6
0
 public ForcePerLength(int value, ForcePerLengthUnit selectedUnit) : base(value, selectedUnit.Unit)
 {
 }
Example #7
0
 public ForcePerLength(decimal value, ForcePerLengthUnit selectedUnit) : base(value, selectedUnit.Unit)
 {
 }