Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

EnergyUnitsConverter Class

Converts energy measurement from one unit to another.

Namespace: DevExpress.UnitConversion

Assembly: DevExpress.Docs.v20.2.dll

Declaration

public class EnergyUnitsConverter :
    BaseUnitsConverter<Energy>

Remarks

Use the PrefixUnitsConverter<T>.Convert method to perform the conversion.

To convert 100 British Thermal Units to Joules, use the following code:

double result = Units.Energy.Convert(100.0f, Energy.Btu, Energy.Joule);

Inheritance

Object
BaseUnitsConverter<Energy>
EnergyUnitsConverter
See Also