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;
}

也可以看看