NullableTypes Class Library

NullableDouble Implicit NullableTypes.NullableInt64 to NullableTypes.NullableDouble Conversion 

Converts the NullableInt64 parameter to a NullableDouble structure.

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

Parameters

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