NullableTypes Class Library

NullableBoolean Explicit NullableTypes.NullableInt16 to NullableTypes.NullableBoolean Conversion 

Converts the NullableInt16 parameter to a NullableBoolean structure.

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

Parameters

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