NullableTypes Class Library

NullableInt64 Explicit NullableTypes.NullableDouble to NullableTypes.NullableInt64 Conversion 

Converts the NullableDouble parameter to a NullableInt64 structure.

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

Parameters

x
A NullableDouble to be converted to a NullableInt64 structure.

Return Value

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

Exceptions

Exception TypeCondition
OverflowExceptionx value is a number that is less than MinValue or greater than MaxValue.

See Also

NullableInt64 Class | NullableTypes Namespace