July 2015
Intermediate to advanced
1300 pages
87h 27m
English
Like its predecessors, Visual Basic 2015 still defines some comparison operators. Typically, comparison operators are of three kinds: numeric operators, string operators, and object operators. Let’s see these operators in detail.
You can compare numeric values by using the operators listed in Table 4.12.
TABLE 4.12 Numeric Comparison Operators
These operators return a Boolean value that is True or False. The following code snippet shows an example (comments within the code contain the Boolean value returned):
Sub NumericOperators() Dim firstNumber As Double ...