Friday, December 19, 2014

Operators in VB.NET

  No comments    
categories: 
Assignment operator (=)
= sign is used as the assignment operator in VB.NET
Example:
Dim x as integer
x = 10 assign 10 to x variable

Arithmetic Operators
Arithmetic Operator are used to perform many of the familiar arithmetic operations that involve the calculation of numeric
values represented by literals, variabl, other expressions, function and property calls, and constants, also classified with
arithmetic operations are the bit-shift operators, which act at the level of the individual bits or the
operands and shift their bit patterns to the left or right.

Arithmetic operators are used to do mathematics operation.

 Arithmetic Operators
Comparison Operator
Comparison Operators compare two expressions and return a Boolean value that represents the relationship of their values.
There are operators for comparing numeric values, operators for comparing string, and operators for comparing objects.

The Comparison Operators are used in comparing values.
Comparison Operator

0 comments:

Post a Comment