pkgOptionExplicit Enumeration
Visual Studio 2015
Used by the OptionExplicit property.
Assembly: VSLangProj2 (in VSLangProj2.dll)
| Member name | Description | |
|---|---|---|
| pkgOptionExplicitOff | Variables do not need to be declared before use. | |
| pkgOptionExplicitOn | Variables must be declared before use. |
The value pkgOptionExplicitOn turns on checking for variable declaration. If you attempt to use an undeclared variable name, an error occurs at compile time. If you use pkgOptionExplicitOff, all undeclared variables are of Object type.
Show: