System.CodeDom.Compiler.CodeGenerator.GenerateCommentStatements C# (CSharp) Méthode

GenerateCommentStatements() protected méthode

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