System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatements C# (CSharp) Method

GenerateCommentStatements() protected method

protected GenerateCommentStatements ( CodeCommentStatementCollection e ) : void
e CodeCommentStatementCollection
return void
        protected virtual void GenerateCommentStatements(CodeCommentStatementCollection e)
        {
            foreach (CodeCommentStatement comment in e)
            {
                GenerateCommentStatement(comment);
            }
        }
CodeGenerator