July 2015
Intermediate to advanced
1300 pages
87h 27m
English
Visual Basic 2015 offers logical, bitwise, and shift operators. Logical operators are special operators that enable comparisons between Boolean values and return Boolean values. Bitwise and shift operators enable performing operations bit by bit. Next let’s discuss both logical and bitwise operators.
Visual Basic 2015 has eight logical/bitwise operators: Not, And, Or, Xor, AndAlso, OrElse, IsFalse, and IsTrue. In this section you’ll learn about the first four; the other ones are covered in the next section. The first operator, Not, returns the opposite of the actual Boolean value. For example, the following lines of code return False because, although the 43 number is greater than 10, ...