Show / Hide Table of Contents

    Class WeldPathSegmentList

    Inheritance
    object
    WeldPathSegmentList
    Implements
    IEnumerable<WeldPathSegment>
    IEnumerable
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public class WeldPathSegmentList : IEnumerable<WeldPathSegment>, IEnumerable

    Constructors

    WeldPathSegmentList()

    Declaration
    public WeldPathSegmentList()

    WeldPathSegmentList(WeldPathSegmentList)

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

    WeldPathSegmentList(IEnumerable<WeldPathSegment>)

    Declaration
    public WeldPathSegmentList(IEnumerable<WeldPathSegment> c)
    Parameters
    Type Name Description
    IEnumerable<WeldPathSegment> c

    WeldPathSegmentList(IEnumerable)

    Declaration
    public WeldPathSegmentList(IEnumerable c)
    Parameters
    Type Name Description
    IEnumerable c

    WeldPathSegmentList(int)

    Declaration
    public WeldPathSegmentList(int capacity)
    Parameters
    Type Name Description
    int capacity

    Properties

    Capacity

    Declaration
    public int Capacity { get; set; }
    Property Value
    Type Description
    int

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    int

    IsFixedSize

    Declaration
    public bool IsFixedSize { get; }
    Property Value
    Type Description
    bool

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    bool

    IsSynchronized

    Declaration
    public bool IsSynchronized { get; }
    Property Value
    Type Description
    bool

    this[int]

    Declaration
    public WeldPathSegment this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    WeldPathSegment

    Methods

    Add(WeldPathSegment)

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

    AddRange(WeldPathSegmentList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(WeldPathSegment[])

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

    CopyTo(WeldPathSegment[], int)

    Declaration
    public void CopyTo(WeldPathSegment[] array, int arrayIndex)
    Parameters
    Type Name Description
    WeldPathSegment[] array
    int arrayIndex

    CopyTo(int, WeldPathSegment[], int, int)

    Declaration
    public void CopyTo(int index, WeldPathSegment[] array, int arrayIndex, int count)
    Parameters
    Type Name Description
    int index
    WeldPathSegment[] array
    int arrayIndex
    int count

    ~WeldPathSegmentList()

    Declaration
    protected ~WeldPathSegmentList()

    GetEnumerator()

    Declaration
    public WeldPathSegmentList.WeldPathSegmentListEnumerator GetEnumerator()
    Returns
    Type Description
    WeldPathSegmentList.WeldPathSegmentListEnumerator

    GetRange(int, int)

    Declaration
    public WeldPathSegmentList GetRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count
    Returns
    Type Description
    WeldPathSegmentList

    Insert(int, WeldPathSegment)

    Declaration
    public void Insert(int index, WeldPathSegment x)
    Parameters
    Type Name Description
    int index
    WeldPathSegment x

    InsertRange(int, WeldPathSegmentList)

    Declaration
    public void InsertRange(int index, WeldPathSegmentList values)
    Parameters
    Type Name Description
    int index
    WeldPathSegmentList values

    RemoveAt(int)

    Declaration
    public void RemoveAt(int index)
    Parameters
    Type Name Description
    int index

    RemoveRange(int, int)

    Declaration
    public void RemoveRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    Repeat(WeldPathSegment, int)

    Declaration
    public static WeldPathSegmentList Repeat(WeldPathSegment value, int count)
    Parameters
    Type Name Description
    WeldPathSegment value
    int count
    Returns
    Type Description
    WeldPathSegmentList

    Reverse()

    Declaration
    public void Reverse()

    Reverse(int, int)

    Declaration
    public void Reverse(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    SetRange(int, WeldPathSegmentList)

    Declaration
    public void SetRange(int index, WeldPathSegmentList values)
    Parameters
    Type Name Description
    int index
    WeldPathSegmentList values

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top