NullableTypes Class Library

NullableDouble Explicit NullableTypes.NullableSingle to NullableTypes.NullableDouble Conversion 

Converts the NullableSingle parameter to a NullableDouble structure.

[Visual Basic]
returnValue = NullableDouble.op_Explicit(x)
[C#]
public static explicit operator NullableDouble(
   NullableSingle x
);

Parameters

x
A NullableSingle to be converted to a NullableDouble structure.

Return Value

Null if x is Null otherwise a new NullableDouble structure constructed from the Value of x.

Remarks

The xNullableSingle value is rounded to the nearest Double value. If the Single value is NaN, the result is also NaN.

See Also

NullableDouble Class | NullableTypes Namespace