Show / Hide Table of Contents

    Class BeamEndList

    Inheritance
    System.Object
    BeamEndList
    Implements
    System.Collections.Generic.IEnumerable<BeamEnd>
    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 BeamEndList : IEnumerable<BeamEnd>, IEnumerable

    Constructors

    BeamEndList()

    Declaration
    public BeamEndList()

    BeamEndList(BeamEndList)

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

    BeamEndList(IEnumerable<BeamEnd>)

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

    BeamEndList(IEnumerable)

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

    BeamEndList(Int32)

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

    Methods

    Add(BeamEnd)

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

    AddRange(BeamEndList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(BeamEnd[])

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

    CopyTo(BeamEnd[], Int32)

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

    CopyTo(Int32, BeamEnd[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public BeamEndList.BeamEndListEnumerator GetEnumerator()
    Returns
    Type Description
    BeamEndList.BeamEndListEnumerator

    GetRange(Int32, Int32)

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

    Insert(Int32, BeamEnd)

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

    InsertRange(Int32, BeamEndList)

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

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

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

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<BeamEnd>.GetEnumerator()

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

    IEnumerable.GetEnumerator()

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

    Implements

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