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