Show / Hide Table of Contents

    Class RoundBarEndList

    Inheritance
    object
    RoundBarEndList
    Implements
    IEnumerable<RoundBarEnd>
    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 RoundBarEndList : IEnumerable<RoundBarEnd>, IEnumerable

    Constructors

    RoundBarEndList()

    Declaration
    public RoundBarEndList()

    RoundBarEndList(RoundBarEndList)

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

    RoundBarEndList(IEnumerable<RoundBarEnd>)

    Declaration
    public RoundBarEndList(IEnumerable<RoundBarEnd> c)
    Parameters
    Type Name Description
    IEnumerable<RoundBarEnd> c

    RoundBarEndList(IEnumerable)

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

    RoundBarEndList(int)

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

    Methods

    Add(RoundBarEnd)

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

    AddRange(RoundBarEndList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(RoundBarEnd[])

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

    CopyTo(RoundBarEnd[], int)

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

    CopyTo(int, RoundBarEnd[], int, int)

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

    ~RoundBarEndList()

    Declaration
    protected ~RoundBarEndList()

    GetEnumerator()

    Declaration
    public RoundBarEndList.RoundBarEndListEnumerator GetEnumerator()
    Returns
    Type Description
    RoundBarEndList.RoundBarEndListEnumerator

    GetRange(int, int)

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

    Insert(int, RoundBarEnd)

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

    InsertRange(int, RoundBarEndList)

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

    Declaration
    public static RoundBarEndList Repeat(RoundBarEnd value, int count)
    Parameters
    Type Name Description
    RoundBarEnd value
    int count
    Returns
    Type Description
    RoundBarEndList

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

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top