S
scooge
class Person {
int id;
string name;
string description
}
In the Array [] Persons i hold a collection of some Persons
In a Listbox i want to show the name
listbox.Items.AddRange(Persons);
now it's showing me "Persons" in the List, how can i select the Name for
the display?
I want my collection inside this listbox, so that i can use it for other
things. Handling events etc
thx
int id;
string name;
string description
}
In the Array [] Persons i hold a collection of some Persons
In a Listbox i want to show the name
listbox.Items.AddRange(Persons);
now it's showing me "Persons" in the List, how can i select the Name for
the display?
I want my collection inside this listbox, so that i can use it for other
things. Handling events etc
thx