Class ComponentList
Inheritance
System.Object
ComponentList
Implements
System.Collections.Generic.IEnumerable<
Component>
System.Collections.IEnumerable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Assembly: DesignData.SDS2.Model.dll
Syntax
public class ComponentList : IEnumerable<Component>, IEnumerable
Constructors
ComponentList()
Declaration
ComponentList(ComponentList)
Declaration
public ComponentList(ComponentList other)
Parameters
ComponentList(IEnumerable<Component>)
Declaration
public ComponentList(IEnumerable<Component> c)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerable<Component> |
c |
|
ComponentList(IEnumerable)
Declaration
public ComponentList(IEnumerable c)
Parameters
Type |
Name |
Description |
System.Collections.IEnumerable |
c |
|
ComponentList(Int32)
Declaration
public ComponentList(int capacity)
Parameters
Type |
Name |
Description |
System.Int32 |
capacity |
|
Properties
Capacity
Declaration
public int Capacity { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Count
Declaration
public int Count { get; }
Property Value
Type |
Description |
System.Int32 |
|
IsFixedSize
Declaration
public bool IsFixedSize { get; }
Property Value
Type |
Description |
System.Boolean |
|
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
Type |
Description |
System.Boolean |
|
IsSynchronized
Declaration
public bool IsSynchronized { get; }
Property Value
Type |
Description |
System.Boolean |
|
Item[Int32]
Declaration
public Component this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Methods
Add(Component)
Declaration
public void Add(Component x)
Parameters
AddRange(ComponentList)
Declaration
public void AddRange(ComponentList values)
Parameters
Clear()
Declaration
CopyTo(Component[])
Declaration
public void CopyTo(Component[] array)
Parameters
CopyTo(Component[], Int32)
Declaration
public void CopyTo(Component[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
Component[] |
array |
|
System.Int32 |
arrayIndex |
|
CopyTo(Int32, Component[], Int32, Int32)
Declaration
public void CopyTo(int index, Component[] array, int arrayIndex, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Component[] |
array |
|
System.Int32 |
arrayIndex |
|
System.Int32 |
count |
|
Finalize()
Declaration
protected void Finalize()
GetEnumerator()
Declaration
public ComponentList.ComponentListEnumerator GetEnumerator()
Returns
GetRange(Int32, Int32)
Declaration
public ComponentList GetRange(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Returns
Insert(Int32, Component)
Declaration
public void Insert(int index, Component x)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Component |
x |
|
InsertRange(Int32, ComponentList)
Declaration
public void InsertRange(int index, ComponentList values)
Parameters
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
RemoveRange(Int32, Int32)
Declaration
public void RemoveRange(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Repeat(Component, Int32)
Declaration
public static ComponentList Repeat(Component value, int count)
Parameters
Type |
Name |
Description |
Component |
value |
|
System.Int32 |
count |
|
Returns
Reverse()
Declaration
Reverse(Int32, Int32)
Declaration
public void Reverse(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
SetRange(Int32, ComponentList)
Declaration
public void SetRange(int index, ComponentList values)
Parameters
ToArray()
Declaration
public Component[] ToArray()
Returns
Explicit Interface Implementations
IEnumerable<Component>.GetEnumerator()
Declaration
IEnumerator<Component> IEnumerable<Component>.GetEnumerator()
Returns
Type |
Description |
System.Collections.Generic.IEnumerator<Component> |
|
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type |
Description |
System.Collections.IEnumerator |
|
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable