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