Multiple choice

In C#, a namespace can be imported by using

  1. namespace directive

  2. import keyword

  3. import construct

  4. the keyword ''Using�

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

C# uses the 'using' keyword to import namespaces. Option D shows 'the keyword 'Using' which is correct despite encoding artifacts. Namespace directives declare namespaces but don't import them. 'import' is not valid C# syntax.