Hello Paul,
The ListBoxControl.SelectedItems property returns an instance of the SelectedItemCollection class. The SelectedItemCollection class is build upon the ICollection interface and explicitly implements the ICollection.CopyTo(Array array, int index) method.
You can use it like this: ((ICollection)listBoxControl1.SelectedItems).CopyTo(...);
Hope this helps,
Holger