Select the keyword used to refer the name space in our code in VB.Net
-
Using
-
Package
-
Imports
-
None of the above
C
Correct answer
Explanation
In VB.NET, the Imports keyword is used to reference namespaces in your code, similar to how 'using' is used in C#. This allows you to use types from those namespaces without fully qualifying them. The Package keyword doesn't exist in VB.NET, and Using is for resource management (like IDisposable objects).