What is the use of ‘using’ declaration?- In 'using-declaration', we have 'using' keyword followed by a fully qualified name of a namespace member. - This allows using the non-qualified name of that member in the scope of the 'using-declaration'. - The 'using-declaration' introduces a name into the declarative region in which the 'using-declaration' appears. - This declaration provides access to a specific namespace member.
|