NullableTypes Class Library

NullableBoolean Explicit NullableTypes.NullableInt64 to NullableTypes.NullableBoolean Conversion 

Converts the NullableInt64 parameter to a NullableBoolean structure.

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

Parameters

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