NullableTypes Class Library

NullableByte Bitwise And Operator 

Computes the bitwise AND of the two specified NullableByte structures.

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

Parameters

x
A NullableByte structure.
y
A NullableByte structure.

Return Value

Null if either instance of NullableByte is Null otherwise a NullableByte structure whose Value property contains the results of the bitwise AND operation.

See Also

NullableByte Class | NullableTypes Namespace