NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HxLink DID NOT INITIALIZE

/removeintchecks (Remove Integer-Overflow Checks)

Turns on or off overflow error checking for integer operations

/removeintchecks [+ | -]

Remarks

The default for this option is /removeintchecks-, which causes the compiler to check all integer calculations for errors such as overflow or division by zero.

Specifying / removeintchecks or / removeintchecks + prevents error checking and can make integer calculations faster. However, without error checking, incorrect results may be stored without raising an error if data type capacities are overflowed.

Example

Compile test.vb and turn off integer overflow error checking:

vbc /removeintchecks+ test.vb 

See Also

Visual Basic Compiler Options | /removefpchecks