I'm new to C# and visual studio
My problem is the following:
I have an access file with foods.
In a form i have a listbox and i have succesfully connected the data source of the listbox with the access file and i get the foods in my listbox
But now i want to copy the items of the listbox to an array
i do that with the following line
listbox1.Items. CopyTo(aa, 0);
but all the...