9 lines
372 B
C#
9 lines
372 B
C#
|
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);
|
||
|
}
|