Show / Hide Table of Contents

    Class BentPlateEndList

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

    Constructors

    BentPlateEndList()

    Declaration
    public BentPlateEndList()

    BentPlateEndList(BentPlateEndList)

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

    BentPlateEndList(IEnumerable<BentPlateEnd>)

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

    BentPlateEndList(IEnumerable)

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

    BentPlateEndList(Int32)

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

    Methods

    Add(BentPlateEnd)

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

    AddRange(BentPlateEndList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(BentPlateEnd[])

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

    CopyTo(BentPlateEnd[], Int32)

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

    CopyTo(Int32, BentPlateEnd[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public BentPlateEndList.BentPlateEndListEnumerator GetEnumerator()
    Returns
    Type Description
    BentPlateEndList.BentPlateEndListEnumerator

    GetRange(Int32, Int32)

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

    Insert(Int32, BentPlateEnd)

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

    InsertRange(Int32, BentPlateEndList)

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

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

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

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<BentPlateEnd>.GetEnumerator()

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

    IEnumerable.GetEnumerator()

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

    Implements

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