NullableTypes Class Library

NullConvert.From Method (NullableBoolean, String)

Converts the specified NullableBoolean value to an equivalent String value using a conventional String value to represent the Null value.

[Visual Basic]
Overloads Public Shared Function From( _
   ByVal x As NullableBoolean, _
   ByVal conventionalNullValue As String _
) As String
[C#]
public static string From(
   NullableBoolean x,
   string conventionalNullValue
);

Parameters

x
The NullableBoolean value to convert.
conventionalNullValue
The String value that conventionally represent the null value.

Return Value

conventionalNullValue if x is Null otherwise the string representation of the Value of x.

See Also

NullConvert Class | NullableTypes.HelperFunctions Namespace | NullConvert.From Overload List