Example #1
0
 /// <devdoc>
 ///    <para>
 ///       Initializes a new instance of <see cref='Microsoft.CodeDom.CodeCommentStatement'/> with the specified text as
 ///       contents.
 ///    </para>
 /// </devdoc>
 public CodeCommentStatement(string text)
 {
     _comment = new CodeComment(text);
 }
Example #2
0
 /// <devdoc>
 ///    <para>[To be supplied.]</para>
 /// </devdoc>
 public CodeCommentStatement(string text, bool docComment)
 {
     _comment = new CodeComment(text, docComment);
 }
Example #3
0
 /// <devdoc>
 ///    <para>[To be supplied.]</para>
 /// </devdoc>
 public CodeCommentStatement(CodeComment comment)
 {
     _comment = comment;
 }