using System; using System.Collections; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a read-only container for a collection of objects. // Token: 0x020000FA RID: 250 [Token(Token = "0x20000FA")] [ComVisible(true)] public class ComponentCollection : ReadOnlyCollectionBase { /// Initializes a new instance of the class using the specified array of components. /// An array of objects to initialize the collection with. // Token: 0x06000622 RID: 1570 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000622")] [Address(RVA = "0xB94A80", Offset = "0xB93A80", VA = "0x180B94A80")] public ComponentCollection(IComponent[] components) { } /// Gets any component in the collection matching the specified name. /// The name of the to get. /// A component with a name matching the name specified by the parameter, or if the named component cannot be found in the collection. // Token: 0x17000116 RID: 278 [Token(Token = "0x17000116")] public virtual IComponent this[string name] { [Token(Token = "0x6000623")] [Address(RVA = "0xB94B60", Offset = "0xB93B60", VA = "0x180B94B60", Slot = "11")] get { return null; } } /// Gets the in the collection at the specified collection index. /// The collection index of the to get. /// The at the specified index. /// If the specified index is not within the index range of the collection. // Token: 0x17000117 RID: 279 [Token(Token = "0x17000117")] public virtual IComponent this[int index] { [Token(Token = "0x6000624")] [Address(RVA = "0xB94AD0", Offset = "0xB93AD0", VA = "0x180B94AD0", Slot = "12")] get { return null; } } /// Copies the entire collection to an array, starting writing at the specified array index. /// An array to copy the objects in the collection to. /// The index of the at which copying to should begin. // Token: 0x06000625 RID: 1573 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000625")] [Address(RVA = "0xB94A30", Offset = "0xB93A30", VA = "0x180B94A30")] public void CopyTo(IComponent[] array, int index) { } } }