Show / Hide Table of Contents

    Class RoundBarEndList

    Inheritance
    System.Object
    RoundBarEndList
    Implements
    System.Collections.Generic.IEnumerable<RoundBarEnd>
    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)
    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
    System.Collections.Generic.IEnumerable<RoundBarEnd> c

    RoundBarEndList(IEnumerable)

    Declaration
    public RoundBarEndList(IEnumerable c)
    Parameters
    Type Name Description
    System.Collections.IEnumerable c

    RoundBarEndList(Int32)

    Declaration
    public RoundBarEndList(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 RoundBarEnd this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 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[], Int32)

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

    CopyTo(Int32, RoundBarEnd[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

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

    GetRange(Int32, Int32)

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

    Insert(Int32, RoundBarEnd)

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

    InsertRange(Int32, RoundBarEndList)

    Declaration
    public void InsertRange(int index, RoundBarEndList values)
    Parameters
    Type Name Description
    System.Int32 index
    RoundBarEndList values

    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(RoundBarEnd, Int32)

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

    Reverse()

    Declaration
    public void Reverse()

    Reverse(Int32, Int32)

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

    SetRange(Int32, RoundBarEndList)

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<RoundBarEnd>.GetEnumerator()

    Declaration
    IEnumerator<RoundBarEnd> IEnumerable<RoundBarEnd>.GetEnumerator()
    Returns
    Type Description
    System.Collections.Generic.IEnumerator<RoundBarEnd>

    IEnumerable.GetEnumerator()

    Declaration
    IEnumerator IEnumerable.GetEnumerator()
    Returns
    Type Description
    System.Collections.IEnumerator

    Implements

    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    Back to top