Tuesday, October 5, 2010

Operators in VB.NET

Page : 1 2 3 4 5 6 7 8 9 10 11 12 13 14

Operators Comes with many built-in operators that allow us to manipulate data. An operator performs a function on one or more operands.

For example, we add two variables with the "+" addition operator and store the result in a third variable with the "=" assignment operator like this: a + b = c. The two variables (a ,b) are called operands.

There are different types of operators in VB.NET


  • Arithmetic Operators

  • Concatenation Operators

  • Comparison Operators

  • Logical / Bitwise Operators