2 instantiations of CodeComment
System (2)
compmod\system\codedom\CodeCommentStatement.cs (2)
50comment = new CodeComment(text); 57comment = new CodeComment(text, docComment);
11 references to CodeComment
System (11)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
1382private void GenerateComment(CodeComment e) {
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1489protected override void GenerateComment(CodeComment e) {
compmod\system\codedom\CodeComment.cs (2)
31/// Initializes a new instance of <see cref='System.CodeDom.CodeComment'/>. 39/// Initializes a new instance of <see cref='System.CodeDom.CodeComment'/> with the specified text as
compmod\system\codedom\CodeCommentStatement.cs (3)
26private CodeComment comment; 39public CodeCommentStatement(CodeComment comment) { 63public CodeComment Comment {
compmod\system\codedom\compiler\CodeGenerator.cs (1)
1655protected abstract void GenerateComment(CodeComment e);
compmod\system\codedom\compiler\CodeValidator.cs (3)
29else if (e is CodeComment) { 30ValidateComment((CodeComment)e); 353private void ValidateComment(CodeComment e) {