所以我有這個數組把二維數組列表框中
string[,] cars = new String[2, 2] {
{ "VW Golf GTI", "30000" },
{ "Porsche GT3", "300000" },
{ "Porsche Cayenne", "80000" },
{ "BMW M6", "90000" }
};
,並希望把一切都在一個列表框,我想這會工作,但不會:/
lstBoxMarket.Items.AddRange(cars);
現在我怎麼把所有的東西放在列表框中的格式爲
汽車 - 價格?
你的代碼不能得到遵守,zagged陣列應使用 –
HTTP:/ /stackoverflow.com/questions/794163/adding-custom-class-objects-to-listbox-in-c-sharp –