NullableTypes Class Library

NullableDouble Implicit NullableTypes.NullableInt32 to NullableTypes.NullableDouble Conversion 

Converts the NullableInt32 parameter to a NullableDouble structure.

[Visual Basic]
returnValue = NullableDouble.op_Implicit(x)
[C#]
public static implicit operator NullableDouble(
   NullableInt32 x
);

Parameters

x
A NullableInt32 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