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