|
Imports is a reserved word in VB.NET, used for including (declaring) additional namespaces in your application. You cannot use reserved words as variables or class/methods names.
Are you trying to declare a specific namespace or is the keyword used somewhere else? Are you sure you are declaring the namespace (if you are) correctly? Also, note that the Imports should be placed in front of any declarations.
|