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