System.CodeDom.Compiler.CodeValidator.ValidateCommentStatements C# (CSharp) Méthode

ValidateCommentStatements() private méthode

private ValidateCommentStatements ( CodeCommentStatementCollection e ) : void
e System.CodeDom.CodeCommentStatementCollection
Résultat void
        private void ValidateCommentStatements(CodeCommentStatementCollection e) {
            foreach (CodeCommentStatement comment in e) {
                 ValidateCommentStatement(comment);
            }
        }
CodeValidator