{description}
{excerpt}Returns a [Comments] collection that contains all comments in the worksheet.{excerpt}
{signature:C#}
 public Comments Comments{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Comments() As Comments
{signature}
{example}{code:csharp|title=C#}
Comments cmnts = ws.Comments;{code}
{code:vb.net|title=vb.net}
Dim cmnts As Comments = ws.Comments{code}

{example}