NullableTypes Class Library

NullableString Explicit NullableTypes.NullableByte to NullableTypes.NullableString Conversion 

Converts the NullableByte parameter to a NullableString structure.

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

Parameters

x
A NullableByte to be converted to a NullableString structure.

Return Value

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

See Also

NullableString Class | NullableTypes Namespace