Add Items to ListBox C#

This code below tell how to add itmes to listbox in C#

for(int i=0;i<10;i++)

{

listBox1.Items.add(i);

}

Leave a Reply