Inheritance
NoteCommentList
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
Declaration
public NoteCommentList(IEnumerable c)
Parameters
Declaration
public NoteCommentList(int capacity)
Parameters
Type |
Name |
Description |
int |
capacity |
|
Properties
Declaration
public int Capacity { get; set; }
Property Value
Declaration
public int Count { get; }
Property Value
Declaration
public bool IsFixedSize { get; }
Property Value
Declaration
public bool IsReadOnly { get; }
Property Value
Declaration
public bool IsSynchronized { get; }
Property Value
Declaration
public NoteComment this[int index] { get; set; }
Parameters
Type |
Name |
Description |
int |
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
Declaration
public void CopyTo(int index, NoteComment[] array, int arrayIndex, int count)
Parameters
Declaration
protected ~NoteCommentList()
Declaration
public NoteCommentList.NoteCommentListEnumerator GetEnumerator()
Returns
Declaration
public NoteCommentList GetRange(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
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 |
int |
index |
|
Declaration
public void RemoveRange(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
Declaration
public static NoteCommentList Repeat(NoteComment value, int count)
Parameters
Returns
Declaration
Declaration
public void Reverse(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
Declaration
public void SetRange(int index, NoteCommentList values)
Parameters
Declaration
public NoteComment[] ToArray()
Returns
Implements