NullableTypes Class Library

NullableString Explicit NullableTypes.NullableInt16 to NullableTypes.NullableString Conversion 

Converts the NullableInt16 parameter to a NullableString structure.

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

Parameters

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