Show / Hide Table of Contents

    Class BentPlateEndList

    Inheritance
    object
    BentPlateEndList
    Implements
    IEnumerable<BentPlateEnd>
    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.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public class BentPlateEndList : IEnumerable<BentPlateEnd>, IEnumerable

    Constructors

    BentPlateEndList()

    Declaration
    public BentPlateEndList()

    BentPlateEndList(BentPlateEndList)

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

    BentPlateEndList(IEnumerable<BentPlateEnd>)

    Declaration
    public BentPlateEndList(IEnumerable<BentPlateEnd> c)
    Parameters
    Type Name Description
    IEnumerable<BentPlateEnd> c

    BentPlateEndList(IEnumerable)

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

    BentPlateEndList(int)

    Declaration
    public BentPlateEndList(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 BentPlateEnd this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    BentPlateEnd

    Methods

    Add(BentPlateEnd)

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

    AddRange(BentPlateEndList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(BentPlateEnd[])

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

    CopyTo(BentPlateEnd[], int)

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

    CopyTo(int, BentPlateEnd[], int, int)

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

    ~BentPlateEndList()

    Declaration
    protected ~BentPlateEndList()

    GetEnumerator()

    Declaration
    public BentPlateEndList.BentPlateEndListEnumerator GetEnumerator()
    Returns
    Type Description
    BentPlateEndList.BentPlateEndListEnumerator

    GetRange(int, int)

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

    Insert(int, BentPlateEnd)

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

    InsertRange(int, BentPlateEndList)

    Declaration
    public void InsertRange(int index, BentPlateEndList values)
    Parameters
    Type Name Description
    int index
    BentPlateEndList 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(BentPlateEnd, int)

    Declaration
    public static BentPlateEndList Repeat(BentPlateEnd value, int count)
    Parameters
    Type Name Description
    BentPlateEnd value
    int count
    Returns
    Type Description
    BentPlateEndList

    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, BentPlateEndList)

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top