ThreadedComments

Comment.ThreadedComments property

Obtiene la lista de comentarios encadenados;

public ThreadedCommentCollection ThreadedComments { get; }

Ejemplos


[C#]
ThreadedCommentCollection threadedComments = comment1.ThreadedComments;
for (int i = 0; i < threadedComments.Count; ++i)
{
    ThreadedComment tc = threadedComments[i];
    string note = tc.Notes;
}

Ver también