This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
\ Operator Example
This example uses the
\ operator to perform integer division.
Dim MyValue
MyValue = 11 \
4 ' Returns 2.
MyValue = 9 \
3 ' Returns 3.
MyValue = 100 \
3 ' Returns 33.