C#.NET — which statement is correct about using statements?

Difficulty: Easy

Correct Answer: A C#.NET source file can contain any number of using statements.

Explanation:


Fact:
A source file can contain multiple using directives. They must appear at the top of the file (before namespace or class declarations). Aliases can be created for namespaces or types.



Final Answer:
A C#.NET source file can contain any number of using statements.

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion