This topic has not yet been rated - Rate this topic

Division Assignment Operator (/=)

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

result /= expression
result

Any numeric variable.

expression

Any numeric expression.

Using this operator is almost the same as specifying result = result / expression, except that result is only evaluated once.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.