NullableTypes Class Library

NullableBoolean Bitwise And Operator 

Computes the bitwise AND of two specified NullableBoolean structures.

[Visual Basic]
returnValue = NullableBoolean.op_BitwiseAnd(x, y)
[C#]
public static NullableBoolean operator &(
   NullableBoolean x,
   NullableBoolean y
);

Parameters

x
A NullableBoolean structure.
y
A NullableBoolean structure.

Return Value

False if either instance of NullableBoolean is False, True if both instances are True otherwise Null .

See Also

NullableBoolean Class | NullableTypes Namespace