NullableTypes Class Library

NullableBoolean Explicit NullableTypes.NullableDouble to NullableTypes.NullableBoolean Conversion 

Converts the NullableDouble parameter to a NullableBoolean structure.

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

Parameters

x
A NullableDouble to be converted to a NullableBoolean structure.

Return Value

Null if x is Null; False if xValue is Zero; True otherwise.

See Also

NullableBoolean Class | NullableTypes Namespace