NullableTypes Class Library

NullableDouble Implicit NullableTypes.NullableInt16 to NullableTypes.NullableDouble Conversion 

Converts the NullableInt16 parameter to a NullableDouble structure.

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

Parameters

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