NullableTypes Class Library

NullableBoolean False Operator 

The false operator can be used to test the Value of the NullableBoolean to determine whether it is false.

[Visual Basic]
returnValue = NullableBoolean.op_False(x)
[C#]
public static bool operator false(
   NullableBoolean x
);

Parameters

x
A NullableBoolean structure.

Return Value

true if Value is False, otherwise false.

Remarks

If the Value is Null, this operator still return false.

See Also

NullableBoolean Class | NullableTypes Namespace