NullableTypes Class Library

NullableString Explicit NullableTypes.NullableSingle to NullableTypes.NullableString Conversion 

Converts the NullableSingle parameter to a NullableString structure.

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

Parameters

x
A NullableSingle to be converted to a NullableString structure.

Return Value

Null if x is Null otherwise a new NullableString structure that's the string representation of x.

See Also

NullableString Class | NullableTypes Namespace