Turns overflow error checking for integer operations on or off.
/removeintchecks[+ | -]
Specifying /removeintchecks or /removeintchecks+ prevents error checking and can make integer calculations faster. However, without error checking and if data type capacities are overflowed, incorrect results may be stored without raising an error.
To set /removeintchecks in the Visual Studio integrated development environment
To set /removeintchecks programmatically
The following code compiles test.vb
and turns off integer overflow error checking:
vbc /removeintchecks+ test.vb