Class WeldList
Assembly: DesignData.SDS2.Model.dll
Syntax
public class WeldList : IEnumerable<Weld>, IEnumerable
Constructors
WeldList()
Declaration
WeldList(WeldList)
Declaration
public WeldList(WeldList other)
Parameters
WeldList(IEnumerable<Weld>)
Declaration
public WeldList(IEnumerable<Weld> c)
Parameters
WeldList(IEnumerable)
Declaration
public WeldList(IEnumerable c)
Parameters
WeldList(int)
Declaration
public WeldList(int capacity)
Parameters
Type |
Name |
Description |
int |
capacity |
|
Properties
Capacity
Declaration
public int Capacity { get; set; }
Property Value
Count
Declaration
public int Count { get; }
Property Value
IsFixedSize
Declaration
public bool IsFixedSize { get; }
Property Value
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
IsSynchronized
Declaration
public bool IsSynchronized { get; }
Property Value
this[int]
Declaration
public Weld this[int index] { get; set; }
Parameters
Type |
Name |
Description |
int |
index |
|
Property Value
Methods
Add(Weld)
Declaration
Parameters
Type |
Name |
Description |
Weld |
x |
|
AddRange(WeldList)
Declaration
public void AddRange(WeldList values)
Parameters
Clear()
Declaration
CopyTo(Weld[])
Declaration
public void CopyTo(Weld[] array)
Parameters
Type |
Name |
Description |
Weld[] |
array |
|
CopyTo(Weld[], int)
Declaration
public void CopyTo(Weld[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
Weld[] |
array |
|
int |
arrayIndex |
|
CopyTo(int, Weld[], int, int)
Declaration
public void CopyTo(int index, Weld[] array, int arrayIndex, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
Weld[] |
array |
|
int |
arrayIndex |
|
int |
count |
|
~WeldList()
Declaration
GetEnumerator()
Declaration
public WeldList.WeldListEnumerator GetEnumerator()
Returns
GetRange(int, int)
Declaration
public WeldList GetRange(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
Returns
Insert(int, Weld)
Declaration
public void Insert(int index, Weld x)
Parameters
Type |
Name |
Description |
int |
index |
|
Weld |
x |
|
InsertRange(int, WeldList)
Declaration
public void InsertRange(int index, WeldList values)
Parameters
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(Weld, int)
Declaration
public static WeldList Repeat(Weld value, int count)
Parameters
Type |
Name |
Description |
Weld |
value |
|
int |
count |
|
Returns
Reverse()
Declaration
Reverse(int, int)
Declaration
public void Reverse(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
SetRange(int, WeldList)
Declaration
public void SetRange(int index, WeldList values)
Parameters
ToArray()
Declaration
Returns
Implements