Bitwise operations
Unlike Visual Basic, in mrScriptBasic the And, Not, Or, and Xor operators always act as logical operators and never as bitwise operators. In mrScriptBasic, you need to use the bitwise functions for bitwise operations. The following table lists the Visual Basic bitwise operators and shows you which function to use in mrScriptBasic.
Visual Basic bitwise operator
|
In mrScriptBasic use
|
And
|
|
Not
|
|
Or
|
|
Xor
|
|
See also