Show / Hide Table of Contents

    Class RectangularPlateEndList

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

    Constructors

    RectangularPlateEndList()

    Declaration
    public RectangularPlateEndList()

    RectangularPlateEndList(RectangularPlateEndList)

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

    RectangularPlateEndList(IEnumerable<RectangularPlateEnd>)

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

    RectangularPlateEndList(IEnumerable)

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

    RectangularPlateEndList(Int32)

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

    Methods

    Add(RectangularPlateEnd)

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

    AddRange(RectangularPlateEndList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(RectangularPlateEnd[])

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

    CopyTo(RectangularPlateEnd[], Int32)

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

    CopyTo(Int32, RectangularPlateEnd[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public RectangularPlateEndList.RectangularPlateEndListEnumerator GetEnumerator()
    Returns
    Type Description
    RectangularPlateEndList.RectangularPlateEndListEnumerator

    GetRange(Int32, Int32)

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

    Insert(Int32, RectangularPlateEnd)

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

    InsertRange(Int32, RectangularPlateEndList)

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

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

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

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<RectangularPlateEnd>.GetEnumerator()

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

    IEnumerable.GetEnumerator()

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

    Implements

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