NullableTypes Class Library

NullableInt64 Implicit NullableTypes.NullableByte to NullableTypes.NullableInt64 Conversion 

Converts the NullableByte parameter to a NullableInt64 structure.

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

Parameters

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