NullableTypes Class Library

NullableDouble Explicit NullableTypes.NullableDecimal to NullableTypes.NullableDouble Conversion 

Converts the NullableDecimal parameter to a NullableDouble structure.

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

Parameters

x
A NullableDecimal 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.

See Also

NullableDouble Class | NullableTypes Namespace