NullableTypes Class Library

NullableSingle Implicit NullableTypes.NullableInt64 to NullableTypes.NullableSingle Conversion 

Converts the NullableInt64 parameter to a NullableSingle structure.

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

Parameters

x
A NullableInt64 to be converted to a NullableSingle structure.

Return Value

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

See Also

NullableSingle Class | NullableTypes Namespace