DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="2.0.2.6986" />

 SIUnit

public abstract class SIUnit : BaseUnit
public static Dictionary<string, double> Conversions { get; }

public abstract double UnitValue { get; }

public double Value { get; set; }

protected SIUnit(double value)

public static SIUnit op_Addition(SIUnit x, SIUnit y)

public static SIUnit op_Addition(SIUnit x, double y)

public static double op_Addition(double x, SIUnit y)

public static object op_Division(SIUnit x, SIUnit y)

public static SIUnit op_Division(SIUnit x, double y)

public static bool op_GreaterThan(double x, SIUnit y)

public static bool op_GreaterThan(SIUnit x, double y)

public static bool op_GreaterThan(SIUnit x, SIUnit y)

public static bool op_GreaterThanOrEqual(double x, SIUnit y)

public static bool op_GreaterThanOrEqual(SIUnit x, double y)

public static bool op_GreaterThanOrEqual(SIUnit x, SIUnit y)

public static bool op_LessThan(double x, SIUnit y)

public static bool op_LessThan(SIUnit x, double y)

public static bool op_LessThan(SIUnit x, SIUnit y)

public static bool op_LessThanOrEqual(double x, SIUnit y)

public static bool op_LessThanOrEqual(SIUnit x, double y)

public static bool op_LessThanOrEqual(SIUnit x, SIUnit y)

public static SIUnit op_Modulus(SIUnit x, SIUnit y)

public static SIUnit op_Modulus(SIUnit x, double y)

public static double op_Modulus(double x, SIUnit y)

public static SIUnit op_Multiply(SIUnit x, SIUnit y)

public static SIUnit op_Multiply(SIUnit x, double y)

public static SIUnit op_Multiply(double x, SIUnit y)

public static SIUnit op_Subtraction(SIUnit x, SIUnit y)

public static SIUnit op_Subtraction(SIUnit x, double y)

public static double op_Subtraction(double x, SIUnit y)

public static SIUnit ToSIUnit(object value)

public abstract SIUnit Add(SIUnit x)

public abstract SIUnit Add(double x)

public abstract SIUnit Ceiling()

public abstract double ConvertToHostUnits()

public abstract object Divide(SIUnit x)

public abstract SIUnit Divide(double x)

public abstract SIUnit Floor()

public abstract SIUnit Modulo(SIUnit x)

public abstract SIUnit Modulo(double x)

public abstract SIUnit Multiply(SIUnit x)

public abstract SIUnit Multiply(double x)

public abstract SIUnit Round()

public abstract void SetValueFromString(string value)

public abstract SIUnit Subtract(SIUnit x)

public abstract SIUnit Subtract(double x)