Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 2.49 KB

integer-division-assignment-operator.md

File metadata and controls

60 lines (43 loc) · 2.49 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: = Operator
\= Operator
07/20/2015
\=
vb.\=
\= operator [Visual Basic]
assignment statements [Visual Basic], compound
statements [Visual Basic], compound assignment
operator \= [Visual Basic]
compound assignment statements [Visual Basic]
6f39915d-e398-4045-afcc-da6885e57b9c

\= Operator

Divides the value of a variable or property by the value of an expression and assigns the integer result to the variable or property.

Syntax

variableorproperty \= expression  

Parts

variableorproperty
Required. Any numeric variable or property.

expression
Required. Any numeric expression.

Remarks

The element on the left side of the \= operator can be a simple scalar variable, a property, or an element of an array. The variable or property cannot be ReadOnly.

The \= operator divides the value of a variable or property on its left by the value on its right, and assigns the integer result to the variable or property on its left

For further information on integer division, see \ Operator (Visual Basic).

Overloading

The \ operator can be overloaded, which means that a class or structure can redefine its behavior when an operand has the type of that class or structure. Overloading the \ operator affects the behavior of the \= operator. If your code uses \= on a class or structure that overloads \, be sure you understand its redefined behavior. For more information, see Operator Procedures.

Example

The following example uses the \= operator to divide one Integer variable by a second and assign the integer result to the first variable.

[!code-vbVbVbalrOperators#19]

See also