[]
Gets the number of threaded comments in the collection.
This collection can represent either all top-level threaded comments in a worksheet or the replies of a single ICommentThreaded. The returned value reflects the number of items in the current collection.
int Count { get; }
ReadOnly Property Count As Integer
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alex");
comment.AddReply("I updated the number.", "Jamie");
ICommentsThreaded replies = comment.Replies;
int count = replies.Count;