diff --git a/csharp/lib/Units/Units.cs b/csharp/lib/Units/Units.cs new file mode 100644 index 000000000..ced38eb03 --- /dev/null +++ b/csharp/lib/Units/Units.cs @@ -0,0 +1,9 @@ +namespace InnovEnergy.Units; + +public static partial class Units +{ + public static Current A (this Decimal value) => new Current(value); + public static Voltage V (this Decimal value) => new Voltage(value); + public static Power W (this Decimal value) => new Power(value); + public static Resistance Ohm(this Decimal value) => new Resistance(value); +} \ No newline at end of file