ThreadedComments

Comment.ThreadedComments property

Dizili yorumların listesini alır;

public ThreadedCommentCollection ThreadedComments { get; }

Örnekler


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

Ayrıca bakınız