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