NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HxLink DID NOT INITIALIZE

BitAnd Operator

Used to perform a logical conjunction on two numeric expressions.

Arguments

result
Required; any numeric variable.
expression1
Required; any expression.
expression2
Required; any expression.

Remarks

The BitAnd operator performs a bitwise comparison of identically positioned bits in two numeric expressions and sets the corresponding bit in result according to the following table:

If bit in expression1 is And bit in expression2 is The result is
0 0 0
0 1 0
1 0 0
1 1 1

See Also

BitNotBitOrBitXor