pkgOptionStrict Enumeration
Visual Studio 2015
Used by the OptionStrict property.
Assembly: VSLangProj2 (in VSLangProj2.dll)
| Member name | Description | |
|---|---|---|
| pkgOptionStrictOff | Implicit conversions are allowed. | |
| pkgOptionStrictOn | Implicit narrowing conversions are prohibited. |
Using pkgOptionStrictOn prohibits implicit narrowing conversions, such as converting a long value to an integer value. Explicit conversions using CType and other conversion functions must be used instead.
Show: