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

TemperatureUnitsConverter Class

Converts temperature measurement from one unit to another.

Namespace: DevExpress.UnitConversion

Assembly: DevExpress.Docs.v20.2.dll

Declaration

public class TemperatureUnitsConverter :
    BaseUnitsConverter<Temperature>

Remarks

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

To convert 100 Celsius to Fahrenheit, use the following code:

double result = Units.Temperature.Convert(100.0f, Temperature.Celsius, Temperature.Fahrenheit);

Inheritance

Object
BaseUnitsConverter<Temperature>
TemperatureUnitsConverter
See Also