Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Turns overflow-error checking for integer operations on or off.
/removeintchecks[+ | -]
Arguments
Term |
Definition |
+ | - |
Optional. The /removeintchecks- option causes the compiler to check all integer calculations for overflow errors. The default is /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 |
|
Example
The following code compiles Test.vb and turns off integer overflow-error checking.
vbc /removeintchecks+ test.vb
See Also
Reference
Sample Compilation Command Lines (Visual Basic)