Show / Hide Table of Contents

    Class BaseCapPlateList

    Inheritance
    object
    BaseCapPlateList
    Implements
    IEnumerable<BaseCapPlate>
    IEnumerable
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public class BaseCapPlateList : IEnumerable<BaseCapPlate>, IEnumerable

    Constructors

    BaseCapPlateList()

    Declaration
    public BaseCapPlateList()

    BaseCapPlateList(BaseCapPlateList)

    Declaration
    public BaseCapPlateList(BaseCapPlateList other)
    Parameters
    Type Name Description
    BaseCapPlateList other

    BaseCapPlateList(IEnumerable<BaseCapPlate>)

    Declaration
    public BaseCapPlateList(IEnumerable<BaseCapPlate> c)
    Parameters
    Type Name Description
    IEnumerable<BaseCapPlate> c

    BaseCapPlateList(IEnumerable)

    Declaration
    public BaseCapPlateList(IEnumerable c)
    Parameters
    Type Name Description
    IEnumerable c

    BaseCapPlateList(int)

    Declaration
    public BaseCapPlateList(int capacity)
    Parameters
    Type Name Description
    int capacity

    Properties

    Capacity

    Declaration
    public int Capacity { get; set; }
    Property Value
    Type Description
    int

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    int

    IsFixedSize

    Declaration
    public bool IsFixedSize { get; }
    Property Value
    Type Description
    bool

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    bool

    IsSynchronized

    Declaration
    public bool IsSynchronized { get; }
    Property Value
    Type Description
    bool

    this[int]

    Declaration
    public BaseCapPlate this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    BaseCapPlate

    Methods

    Add(BaseCapPlate)

    Declaration
    public void Add(BaseCapPlate x)
    Parameters
    Type Name Description
    BaseCapPlate x

    AddRange(BaseCapPlateList)

    Declaration
    public void AddRange(BaseCapPlateList values)
    Parameters
    Type Name Description
    BaseCapPlateList values

    Clear()

    Declaration
    public void Clear()

    CopyTo(BaseCapPlate[])

    Declaration
    public void CopyTo(BaseCapPlate[] array)
    Parameters
    Type Name Description
    BaseCapPlate[] array

    CopyTo(BaseCapPlate[], int)

    Declaration
    public void CopyTo(BaseCapPlate[] array, int arrayIndex)
    Parameters
    Type Name Description
    BaseCapPlate[] array
    int arrayIndex

    CopyTo(int, BaseCapPlate[], int, int)

    Declaration
    public void CopyTo(int index, BaseCapPlate[] array, int arrayIndex, int count)
    Parameters
    Type Name Description
    int index
    BaseCapPlate[] array
    int arrayIndex
    int count

    ~BaseCapPlateList()

    Declaration
    protected ~BaseCapPlateList()

    GetEnumerator()

    Declaration
    public BaseCapPlateList.BaseCapPlateListEnumerator GetEnumerator()
    Returns
    Type Description
    BaseCapPlateList.BaseCapPlateListEnumerator

    GetRange(int, int)

    Declaration
    public BaseCapPlateList GetRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count
    Returns
    Type Description
    BaseCapPlateList

    Insert(int, BaseCapPlate)

    Declaration
    public void Insert(int index, BaseCapPlate x)
    Parameters
    Type Name Description
    int index
    BaseCapPlate x

    InsertRange(int, BaseCapPlateList)

    Declaration
    public void InsertRange(int index, BaseCapPlateList values)
    Parameters
    Type Name Description
    int index
    BaseCapPlateList values

    RemoveAt(int)

    Declaration
    public void RemoveAt(int index)
    Parameters
    Type Name Description
    int index

    RemoveRange(int, int)

    Declaration
    public void RemoveRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    Repeat(BaseCapPlate, int)

    Declaration
    public static BaseCapPlateList Repeat(BaseCapPlate value, int count)
    Parameters
    Type Name Description
    BaseCapPlate value
    int count
    Returns
    Type Description
    BaseCapPlateList

    Reverse()

    Declaration
    public void Reverse()

    Reverse(int, int)

    Declaration
    public void Reverse(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    SetRange(int, BaseCapPlateList)

    Declaration
    public void SetRange(int index, BaseCapPlateList values)
    Parameters
    Type Name Description
    int index
    BaseCapPlateList values

    ToArray()

    Declaration
    public BaseCapPlate[] ToArray()
    Returns
    Type Description
    BaseCapPlate[]

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top