Show / Hide Table of Contents

    Class NoteCommentList

    Inheritance
    object
    NoteCommentList
    Implements
    IEnumerable<NoteComment>
    IEnumerable
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public class NoteCommentList : IEnumerable<NoteComment>, IEnumerable

    Constructors

    NoteCommentList()

    Declaration
    public NoteCommentList()

    NoteCommentList(NoteCommentList)

    Declaration
    public NoteCommentList(NoteCommentList other)
    Parameters
    Type Name Description
    NoteCommentList other

    NoteCommentList(IEnumerable<NoteComment>)

    Declaration
    public NoteCommentList(IEnumerable<NoteComment> c)
    Parameters
    Type Name Description
    IEnumerable<NoteComment> c

    NoteCommentList(IEnumerable)

    Declaration
    public NoteCommentList(IEnumerable c)
    Parameters
    Type Name Description
    IEnumerable c

    NoteCommentList(int)

    Declaration
    public NoteCommentList(int capacity)
    Parameters
    Type Name Description
    int capacity

    Properties

    Capacity

    Declaration
    public int Capacity { get; set; }
    Property Value
    Type Description
    int

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    int

    IsFixedSize

    Declaration
    public bool IsFixedSize { get; }
    Property Value
    Type Description
    bool

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    bool

    IsSynchronized

    Declaration
    public bool IsSynchronized { get; }
    Property Value
    Type Description
    bool

    this[int]

    Declaration
    public NoteComment this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    NoteComment

    Methods

    Add(NoteComment)

    Declaration
    public void Add(NoteComment x)
    Parameters
    Type Name Description
    NoteComment x

    AddRange(NoteCommentList)

    Declaration
    public void AddRange(NoteCommentList values)
    Parameters
    Type Name Description
    NoteCommentList values

    Clear()

    Declaration
    public void Clear()

    CopyTo(NoteComment[])

    Declaration
    public void CopyTo(NoteComment[] array)
    Parameters
    Type Name Description
    NoteComment[] array

    CopyTo(NoteComment[], int)

    Declaration
    public void CopyTo(NoteComment[] array, int arrayIndex)
    Parameters
    Type Name Description
    NoteComment[] array
    int arrayIndex

    CopyTo(int, NoteComment[], int, int)

    Declaration
    public void CopyTo(int index, NoteComment[] array, int arrayIndex, int count)
    Parameters
    Type Name Description
    int index
    NoteComment[] array
    int arrayIndex
    int count

    ~NoteCommentList()

    Declaration
    protected ~NoteCommentList()

    GetEnumerator()

    Declaration
    public NoteCommentList.NoteCommentListEnumerator GetEnumerator()
    Returns
    Type Description
    NoteCommentList.NoteCommentListEnumerator

    GetRange(int, int)

    Declaration
    public NoteCommentList GetRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count
    Returns
    Type Description
    NoteCommentList

    Insert(int, NoteComment)

    Declaration
    public void Insert(int index, NoteComment x)
    Parameters
    Type Name Description
    int index
    NoteComment x

    InsertRange(int, NoteCommentList)

    Declaration
    public void InsertRange(int index, NoteCommentList values)
    Parameters
    Type Name Description
    int index
    NoteCommentList values

    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(NoteComment, int)

    Declaration
    public static NoteCommentList Repeat(NoteComment value, int count)
    Parameters
    Type Name Description
    NoteComment value
    int count
    Returns
    Type Description
    NoteCommentList

    Reverse()

    Declaration
    public void Reverse()

    Reverse(int, int)

    Declaration
    public void Reverse(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    SetRange(int, NoteCommentList)

    Declaration
    public void SetRange(int index, NoteCommentList values)
    Parameters
    Type Name Description
    int index
    NoteCommentList values

    ToArray()

    Declaration
    public NoteComment[] ToArray()
    Returns
    Type Description
    NoteComment[]

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top