I have a BindingList like the follow:
private BindingList<int[]> sortedNumbers = new BindingList<int[]>();
Each entry is a int[6], now I wanted to bind it to a listbox so it updates it everytime a set of numbers is added to it.
listBox1.DataSource = sortedNumbers;
The result is the below text for each entry:
Matriz Int32[].
How do I format the output or change it so it prints the numbers of each entry set as they are generated ?