NullableTypes Class Library

NullableSingle Explicit NullableTypes.NullableDecimal to NullableTypes.NullableSingle Conversion 

Converts the NullableDecimal parameter to a NullableSingle structure.

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

Parameters

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