I'm coding in c#.
I am creating an array of objects in the first form.
I want to open up a second form that displays the information in the array in a listbox.
How do I pass the information in the array in the first form to a new array in the second form?
Edit:
This is the code I have in the first form.
f2.F2People = people;
F2People is the properties of the f2people array in the second form. (the array is private, so you would use the properties to set a value). people is the array in the first form. I have this code inside the button click.