Visual Basic - Bitwise operators
We have more of the bitwise operators, using the bitwise operator we can set or determine the specific bit in whole numbers.Visual Basic .NET
Other pieces of example codes:y = not x
x = 1 or 2
(i and j)
x = 8 >> 1
x = 16 << 2
x = 123 xor 25
Bitwise operators in another programming language: