NullableTypes Class Library

NullableInt64 Implicit NullableTypes.NullableInt32 to NullableTypes.NullableInt64 Conversion 

Converts the NullableInt32 parameter to a NullableInt64 structure.

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

Parameters

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

See Also

NullableInt64 Class | NullableTypes Namespace