These are the bitwise operators in VB.NET : And, Or, Xor, Not
Example of And bitwise operation
Dim a as Integer
a = 3 And 5
The value of a will be 1. The result is obtained after comparing 3 and 5 in binary for. 3 in binary form is 011 and 5 in binary form is 101. The And operator places 1 if ...