If Listbox Is The Class Of Systemwindowsforms Namespace Then #764
If ListBox is the class of System.Windows.Forms namespace. Then, the correct way to create an object of ListBox class is?
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Namespaces, Preprocessors and Networking - Fundamentals of Namespaces - Quiz No.1.
If ListBox is the class of System.Windows.Forms namespace. Then, the correct way to create an object of ListBox class is?
using System.Windows.Forms; ListBox I = new ListBox();
System.Windows.Forms.ListBox I = new System.Windows.Forms.ListBox();
using LBControl I = new System.Windows.Forms.ListBox;
All of the mentioned