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