I have the following two codes
List<string> _items = new List<string>(); List<string> _items2 = new List<string>();
I want to add both of them to one multi-column Listbox
Column 1 may be _items, while Column2 may be _items2
I don't know how to add items2 to the second column
I added _items to the list from
Listbox1.DataSource = _items
thanks
source share