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)
146
protected override void Visit(
CodeComment
comment)
542
if (obj is
CodeComment
)
543
Visit((
CodeComment
)obj);
565
protected virtual void Visit(
CodeComment
comment) { }
CodeDomFixup\CodeDomVisitors\NamespaceFixer.cs (1)
58
protected override void Visit(
CodeComment
comment)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (1)
1929
protected abstract void GenerateComment(
CodeComment
e);
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (3)
28
else if (e is
CodeComment
)
30
ValidateComment((
CodeComment
)e);
433
private void ValidateComment(
CodeComment
e)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (1)
1541
private 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)
23
private
CodeComment
_comment;
37
public CodeCommentStatement(
CodeComment
comment)
64
public
CodeComment
Comment