/// <summary>
 /// Visits a <see cref="CodeCommentStatementCollection"/>.
 /// </summary>
 /// <param name="codeCommentStatementCollection">The <see cref="CodeCommentStatementCollection"/> to visit.</param>
 protected virtual void VisitCodeCommentStatementCollection(CodeCommentStatementCollection codeCommentStatementCollection)
 {
     // Visit all of the CodeCommentStatement items in the collection.
     foreach (CodeCommentStatement item in codeCommentStatementCollection.Cast<CodeCommentStatement>())
     {
         this.VisitCodeCommentStatement(item);
     }
 }