ThreadedComments

Comment.ThreadedComments property

Получает список цепочек комментариев;

public ThreadedCommentCollection ThreadedComments { get; }

Примеры


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

Смотрите также