NullableTypes Class Library

NullableSingle Implicit NullableTypes.NullableInt32 to NullableTypes.NullableSingle Conversion 

Converts the NullableInt32 parameter to a NullableSingle structure.

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

Parameters

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