VB.NET - Significance of Import and Using statement

Explain the significance of Import and Using statement.

To have same names declared and used in one or more namespaces, import aliases can be used.

In C#, ‘using’ defines the scope of an object. It also obtains resources, runs the statements and then performs the clean up using the dispose method.

Which keyword do you use to reference class library members without specifying fully qualified name?

’Import’ in VB.NET and ‘using’ in C#.NET.
VB.NET - COM+ services
COM+ services - Queued components provide asynchronous message queuing.Object Pooling provides a pool of ready-made objects......
VB.NET - Shared member of the class
Shared member of the class - It is member of the class which can be access without creating instance of the class........
VB.NET - What is visual inheritance in VB.NET?
What is visual inheritance in VB.NET? - Visual inheritance allows deriving forms from the base form with common controls......
Post your comment