Discussion :: Namespaces
-
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();
-
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment