Inheritance
System.Object
NoteCommentList
Implements
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
public class NoteCommentList : IEnumerable<NoteComment>, IEnumerable
Constructors
Declaration
Declaration
public NoteCommentList(NoteCommentList other)
Parameters
Declaration
public NoteCommentList(IEnumerable<NoteComment> c)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerable<NoteComment> |
c |
|
Declaration
public NoteCommentList(IEnumerable c)
Parameters
Type |
Name |
Description |
System.Collections.IEnumerable |
c |
|
Declaration
public NoteCommentList(int capacity)
Parameters
Type |
Name |
Description |
System.Int32 |
capacity |
|
Properties
Declaration
public int Capacity { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Declaration
public int Count { get; }
Property Value
Type |
Description |
System.Int32 |
|
Declaration
public bool IsFixedSize { get; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public bool IsReadOnly { get; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public bool IsSynchronized { get; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public NoteComment this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Methods
Declaration
public void Add(NoteComment x)
Parameters
Declaration
public void AddRange(NoteCommentList values)
Parameters
Declaration
Declaration
public void CopyTo(NoteComment[] array)
Parameters
Declaration
public void CopyTo(NoteComment[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
NoteComment[] |
array |
|
System.Int32 |
arrayIndex |
|
Declaration
public void CopyTo(int index, NoteComment[] array, int arrayIndex, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
NoteComment[] |
array |
|
System.Int32 |
arrayIndex |
|
System.Int32 |
count |
|
Declaration
protected void Finalize()
Declaration
public NoteCommentList.NoteCommentListEnumerator GetEnumerator()
Returns
Declaration
public NoteCommentList GetRange(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Returns
Declaration
public void Insert(int index, NoteComment x)
Parameters
Declaration
public void InsertRange(int index, NoteCommentList values)
Parameters
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Declaration
public void RemoveRange(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Declaration
public static NoteCommentList Repeat(NoteComment value, int count)
Parameters
Type |
Name |
Description |
NoteComment |
value |
|
System.Int32 |
count |
|
Returns
Declaration
Declaration
public void Reverse(int index, int count)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Int32 |
count |
|
Declaration
public void SetRange(int index, NoteCommentList values)
Parameters
Declaration
public NoteComment[] ToArray()
Returns
Explicit Interface Implementations
Declaration
IEnumerator<NoteComment> IEnumerable<NoteComment>.GetEnumerator()
Returns
Type |
Description |
System.Collections.Generic.IEnumerator<NoteComment> |
|
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type |
Description |
System.Collections.IEnumerator |
|
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable