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.
|