System.ComponentModel.ComponentCollection
namespace System.ComponentModel
{
public class ComponentCollection : ReadOnlyCollectionBase
{
public virtual IComponent this[int index] { get; }
public virtual IComponent this[string name] { get; }
public ComponentCollection(IComponent[] components);
public void CopyTo(IComponent[] array, int index);
}
}