NullableTypes Class Library

NullableBoolean Explicit NullableTypes.NullableSingle to NullableTypes.NullableBoolean Conversion 

Converts the NullableSingle parameter to a NullableBoolean structure.

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

Parameters

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