NullableTypes Class Library

NullableString Explicit NullableTypes.NullableString to System.String Conversion 

Converts a NullableString to a String.

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

Parameters

a
A NullableString to convert.

Return Value

A String set to the Value of the NullableString.

Exceptions

Exception TypeCondition
NullableNullValueExceptiona is Null.

See Also

NullableString Class | NullableTypes Namespace