Show / Hide Table of Contents

    Class BoltList

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

    Constructors

    BoltList()

    Declaration
    public BoltList()

    BoltList(BoltList)

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

    BoltList(IEnumerable<Bolt>)

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

    BoltList(IEnumerable)

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

    BoltList(Int32)

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

    Methods

    Add(Bolt)

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

    AddRange(BoltList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(Bolt[])

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

    CopyTo(Bolt[], Int32)

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

    CopyTo(Int32, Bolt[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public BoltList.BoltListEnumerator GetEnumerator()
    Returns
    Type Description
    BoltList.BoltListEnumerator

    GetRange(Int32, Int32)

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

    Insert(Int32, Bolt)

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

    InsertRange(Int32, BoltList)

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

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

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

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<Bolt>.GetEnumerator()

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

    IEnumerable.GetEnumerator()

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

    Implements

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