RemoveAllReplies

Comment.RemoveAllReplies method

删除对此评论的所有回复。

public void RemoveAllReplies()

评论

回复的所有组成节点都将从文档中删除。

例子

显示如何删除评论回复。

Document doc = new Document();

Comment comment = new Comment(doc, "John Doe", "J.D.", DateTime.Now);
comment.SetText("My comment.");

doc.FirstSection.Body.FirstParagraph.AppendChild(comment);

comment.AddReply("Joe Bloggs", "J.B.", DateTime.Now, "New reply");
comment.AddReply("Joe Bloggs", "J.B.", DateTime.Now, "Another reply");

Assert.AreEqual(2, comment.Replies.Count()); 

// 以下是从评论中删除回复的两种方法。
// 1 - 使用“RemoveReply”方法单独删除评论中的回复:
comment.RemoveReply(comment.Replies[0]);

Assert.AreEqual(1, comment.Replies.Count());

// 2 - 使用“RemoveAllReplies”方法一次性删除评论中的所有回复:
comment.RemoveAllReplies();

Assert.AreEqual(0, comment.Replies.Count());

也可以看看