Class WeldSegmentList
Inheritance
System.Object
WeldSegmentList
Implements
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)
Assembly: DesignData.SDS2.Model.dll
Syntax
public class WeldSegmentList : IEnumerable<WeldSegment>, IEnumerable
Constructors
WeldSegmentList()
Declaration
WeldSegmentList(WeldSegmentList)
Declaration
public WeldSegmentList(WeldSegmentList other)
Parameters
WeldSegmentList(IEnumerable<WeldSegment>)
Declaration
public WeldSegmentList(IEnumerable<WeldSegment> c)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerable<WeldSegment> |
c |
|
WeldSegmentList(IEnumerable)
Declaration
public WeldSegmentList(IEnumerable c)
Parameters
Type |
Name |
Description |
System.Collections.IEnumerable |
c |
|
WeldSegmentList(Int32)
Declaration
public WeldSegmentList(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 WeldSegment this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Methods
Add(WeldSegment)
Declaration
public void Add(WeldSegment x)
Parameters
AddRange(WeldSegmentList)
Declaration
public void AddRange(WeldSegmentList values)
Parameters
Clear()
Declaration
CopyTo(WeldSegment[])
Declaration
public void CopyTo(WeldSegment[] array)
Parameters
CopyTo(WeldSegment[], Int32)
Declaration
public void CopyTo(WeldSegment[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
WeldSegment[] |
array |
|
System.Int32 |
arrayIndex |
|
CopyTo(Int32, WeldSegment[], Int32, Int32)
Declaration
public void CopyTo(int index, WeldSegment[] array, int arrayIndex, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
WeldSegment[] |
array |
|
System.Int32 |
arrayIndex |
|
System.Int32 |
count |
|
Finalize()
Declaration
protected void Finalize()
GetEnumerator()
Declaration
public WeldSegmentList.WeldSegmentListEnumerator GetEnumerator()
Returns
GetRange(Int32, Int32)
Declaration
public WeldSegmentList GetRange(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Returns
Insert(Int32, WeldSegment)
Declaration
public void Insert(int index, WeldSegment x)
Parameters
InsertRange(Int32, WeldSegmentList)
Declaration
public void InsertRange(int index, WeldSegmentList values)
Parameters
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(WeldSegment, Int32)
Declaration
public static WeldSegmentList Repeat(WeldSegment value, int count)
Parameters
Type |
Name |
Description |
WeldSegment |
value |
|
System.Int32 |
count |
|
Returns
Reverse()
Declaration
Reverse(Int32, Int32)
Declaration
public void Reverse(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
SetRange(Int32, WeldSegmentList)
Declaration
public void SetRange(int index, WeldSegmentList values)
Parameters
ToArray()
Declaration
public WeldSegment[] ToArray()
Returns
Explicit Interface Implementations
IEnumerable<WeldSegment>.GetEnumerator()
Declaration
IEnumerator<WeldSegment> IEnumerable<WeldSegment>.GetEnumerator()
Returns
Type |
Description |
System.Collections.Generic.IEnumerator<WeldSegment> |
|
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type |
Description |
System.Collections.IEnumerator |
|
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable