int[] arr = int[100]; listBox1.DataSource = arr; void ComboBox1SelectedIndexChanged(object sender, EventArgs e) { .....
and
listBox1.Refresh(); is not working,
and
listBox1.Update(); is not working,
I know that I can use BindingList<T> , but I need to work only with the array.
Can you help me, how can I update the list?
c # refresh listbox
ocanal
source share