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