[]
Deletes this comment from its cell.
Use this method to remove a single cell comment. To remove comments from multiple cells in a range, use ClearComments().
void Delete()
Sub Delete()
worksheet.Range["D5"].Value = "Review";
IComment comment = worksheet.Range["D5"].AddComment("Check this value.");
comment.Delete();