I have two the following code
List<string> _items = new List<string>();
List<string> _items2 = new List<string>();
I want to add both of them into a single multi-column Listbox
Column1 could be _items whereas Column2 can be _items2
I don't know how to add items2 to a 2nd column
I've added _items to the Listbox by
Listbox1.DataSource = _items
Thank you
The above answer did not work for me, using .NetCF, this slight variation did: