Show / Hide Table of Contents

    Class DeformedBarAttachmentList

    Inheritance
    System.Object
    DeformedBarAttachmentList
    Implements
    System.Collections.Generic.IEnumerable<DeformedBarAttachment>
    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.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public class DeformedBarAttachmentList : IEnumerable<DeformedBarAttachment>, IEnumerable

    Constructors

    DeformedBarAttachmentList()

    Declaration
    public DeformedBarAttachmentList()

    DeformedBarAttachmentList(DeformedBarAttachmentList)

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

    DeformedBarAttachmentList(IEnumerable<DeformedBarAttachment>)

    Declaration
    public DeformedBarAttachmentList(IEnumerable<DeformedBarAttachment> c)
    Parameters
    Type Name Description
    System.Collections.Generic.IEnumerable<DeformedBarAttachment> c

    DeformedBarAttachmentList(IEnumerable)

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

    DeformedBarAttachmentList(Int32)

    Declaration
    public DeformedBarAttachmentList(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 DeformedBarAttachment this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 index
    Property Value
    Type Description
    DeformedBarAttachment

    Methods

    Add(DeformedBarAttachment)

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

    AddRange(DeformedBarAttachmentList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(DeformedBarAttachment[])

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

    CopyTo(DeformedBarAttachment[], Int32)

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

    CopyTo(Int32, DeformedBarAttachment[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public DeformedBarAttachmentList.DeformedBarAttachmentListEnumerator GetEnumerator()
    Returns
    Type Description
    DeformedBarAttachmentList.DeformedBarAttachmentListEnumerator

    GetRange(Int32, Int32)

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

    Insert(Int32, DeformedBarAttachment)

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

    InsertRange(Int32, DeformedBarAttachmentList)

    Declaration
    public void InsertRange(int index, DeformedBarAttachmentList values)
    Parameters
    Type Name Description
    System.Int32 index
    DeformedBarAttachmentList 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(DeformedBarAttachment, Int32)

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

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

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<DeformedBarAttachment>.GetEnumerator()

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

    IEnumerable.GetEnumerator()

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

    Implements

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