TemperatureFromFahrenheit Method

Returns a Temperature structure equal to the Fahrenheit value provided

Definition

Namespace: InnerDrive.Quantitative
Assembly: InnerDrive.Quantitative (in InnerDrive.Quantitative.dll) Version: 5.2.9017.0
C#
public static Temperature? FromFahrenheit(
	double? value
)

Parameters

value  NullableDouble
The temperature in degrees Fahrenheit

Return Value

NullableTemperature
A Temperature

Remarks

If value is null, the method returns null

Exceptions

ArgumentOutOfRangeExceptionvalue is less than absolute zero

See Also