NullableTypes Class Library

NullableBoolean Explicit NullableTypes.NullableInt32 to NullableTypes.NullableBoolean Conversion 

Converts the NullableInt32 parameter to a NullableBoolean structure.

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

Parameters

x
A NullableInt32 to be converted to a NullableBoolean structure.

Return Value

Null if x is Null otherwise a new NullableBoolean structure constructed from the Value of x.

See Also

NullableBoolean Class | NullableTypes Namespace