using System.Collections; namespace System.Windows.Forms { public partial class ListBox { public class SelectedObjectCollection : ObjectCollectionBase { internal SelectedObjectCollection(IList items) : base(items) { } } } }