FBWiki : KeyPgOpCombineIntegerDivide

FBWiki :: Categories :: PageIndex :: RecentChanges :: RecentlyCommented :: Login/Register

Operator \= (Integer divide and Assign)


Integer divides and assigns a value to a variable

Syntax:
declare operator \= ( byref lhs as T1, byref rhs as T2 )

Usage:
lhs \= rhs

Parameters:
lhs
The variable to assign to.
T1
Any numeric type.
rhs
The value to divide lhs by.
T2
Any numeric type.

Description:
This operator multiplies and assigns a value to a variable. It is functionally equivalent to:

lhs = lhs \ rhs

This operator can be overloaded for user-defined types.

Examples:
Dim n As Double
n = 6
n \= 2.2
Print n
Sleep

Output:
3


Dialect Differences:

Differences from QB:

See also:

Back to Assignment Operators
Back to Operators

There are no comments on this page. [Add comment]

Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by Wikka Wakka Wiki 1.1.6.0



sf.net phatcode