System.CodeDom.CodeCommentStatement.CodeCommentStatement C# (CSharp) Method

CodeCommentStatement() public method

public CodeCommentStatement ( string text, bool docComment ) : System.Diagnostics
text string
docComment bool
return System.Diagnostics
        public CodeCommentStatement(string text, bool docComment) {
            comment = new CodeComment(text, docComment);
        }

Same methods

CodeCommentStatement::CodeCommentStatement ( ) : System.Diagnostics
CodeCommentStatement::CodeCommentStatement ( CodeComment comment ) : System.Diagnostics
CodeCommentStatement::CodeCommentStatement ( string text ) : System.Diagnostics
CodeCommentStatement