2 instantiations of CodeComment
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.CodeDom\System\CodeCommentStatement.cs (2)
50_comment = new CodeComment(text); 58_comment = new CodeComment(text, docComment);
15 references to CodeComment
dotnet-svcutil-lib (15)
CodeDomFixup\CodeDomVisitors\CodeDomVisitor.cs (4)
146protected override void Visit(CodeComment comment) 542if (obj is CodeComment) 543Visit((CodeComment)obj); 565protected virtual void Visit(CodeComment comment) { }
CodeDomFixup\CodeDomVisitors\NamespaceFixer.cs (1)
58protected override void Visit(CodeComment comment)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (1)
1929protected abstract void GenerateComment(CodeComment e);
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (3)
28else if (e is CodeComment) 30ValidateComment((CodeComment)e); 433private void ValidateComment(CodeComment e)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (1)
1541private void GenerateComment(CodeComment e)
FrameworkFork\Microsoft.CodeDom\System\CodeComment.cs (2)
28/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeComment'/>. 37/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeComment'/> with the specified text as
FrameworkFork\Microsoft.CodeDom\System\CodeCommentStatement.cs (3)
23private CodeComment _comment; 37public CodeCommentStatement(CodeComment comment) 64public CodeComment Comment