Метод Comment.getText
Метод возвращает текст комментария.
Пример
Comments comments = document.getRange().getComments();
CommentsEnumerator commentsEnumerator = comments.GetEnumerator();
foreach (var comment in commentsEnumerator)
{
Console.WriteLine(comment.getText());
}