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