2 instantiations of CodeComment
System (2)
compmod\system\codedom\CodeCommentStatement.cs (2)
50
comment = new
CodeComment
(text);
57
comment = new
CodeComment
(text, docComment);
11 references to CodeComment
System (11)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
1382
private void GenerateComment(
CodeComment
e) {
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1489
protected 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)
26
private
CodeComment
comment;
39
public CodeCommentStatement(
CodeComment
comment) {
63
public
CodeComment
Comment {
compmod\system\codedom\compiler\CodeGenerator.cs (1)
1655
protected abstract void GenerateComment(
CodeComment
e);
compmod\system\codedom\compiler\CodeValidator.cs (3)
29
else if (e is
CodeComment
) {
30
ValidateComment((
CodeComment
)e);
353
private void ValidateComment(
CodeComment
e) {