MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following statements is correct about the using statement used in C#.NET? |
| A. | using statement can be placed anywhere in the C#.NET source code file. |
| B. | It is permitted to define a member at namespace level as a using alias. |
| C. | A C#.NET source code file can contain any number of using statement. |
| D. | By using using statement it is possible to create an alias for the namespace but not for the namespace element. |
| Answer» D. By using using statement it is possible to create an alias for the namespace but not for the namespace element. | |