C# Programming :: Namespaces
-
Which of the following statements are correct about a namespace used in C#.NET?
- Classes must belong to a namespace, whereas structures need not.
- Every class, struct, enum, delegate and interlace has to belong to some or the other namespace.
- All elements of the namespace have to belong to one file.
- If not mentioned, a namespace takes the name of the current project.
- The namespace should be imported to be able to use the elements in it.
-
Which of the following CANNOT belong to a C#.NET Namespace?
-
Which of the following statements is correct about a namespace used in C#.NET?
-
Which of the following C#.NET code snippets will correctly print "Hello C#.NET"?
-
If ListBox is class present in System.Windows.Forms namespace, then which of the following statements are the correct way to create an object of ListBox Class?
-
using System.Windows.Forms; ListBox lb = new ListBox();
-
using LBControl = System.Windows.Forms; LBControl lb = new LBControl();
-
System.Windows.Forms.ListBox lb = new zzzSystem.Windows.Forms.ListBox();
-
using LBControl lb = new System.Windows.Forms.ListBox;
-
using LBContrSystem.Windows.Forms.ListBox; LBControl lb = new LBControl();
-
A.
|
B.
|
C.
|
D.
|