44 instantiations of CodeCommentStatement
PresentationBuildTasks (3)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (3)
1504
CodeCommentStatement ccs = new
CodeCommentStatement
(SummaryStartTag, true);
1506
ccs = new
CodeCommentStatement
(comment, true);
1508
ccs = new
CodeCommentStatement
(SummaryEndTag, true);
System.Windows.Forms.Design (20)
System\ComponentModel\Design\Serialization\ComponentCodeDomSerializer.cs (3)
438
entry.Statements.Insert(0, new
CodeCommentStatement
(string.Empty));
439
entry.Statements.Insert(0, new
CodeCommentStatement
(name));
440
entry.Statements.Insert(0, new
CodeCommentStatement
(string.Empty));
System\Resources\Tools\StronglyTypedResourceBuilder.cs (17)
375
classType.Comments.Add(
new
(DocCommentSummaryStart, docComment: true));
376
classType.Comments.Add(
new
(SR.ClassDocComment, docComment: true));
377
classType.Comments.Add(
new
(DocCommentSummaryEnd, docComment: true));
485
classDeclaration.Comments.Add(
new
(SR.ClassComments1));
486
classDeclaration.Comments.Add(
new
(SR.ClassComments2));
487
classDeclaration.Comments.Add(
new
(SR.ClassComments3));
488
classDeclaration.Comments.Add(
new
(SR.ClassComments4));
625
resourceManagerProperty.Comments.Add(
new
(DocCommentSummaryStart, docComment: true));
626
resourceManagerProperty.Comments.Add(
new
(SR.ResMgrPropertyComment, docComment: true));
627
resourceManagerProperty.Comments.Add(
new
(DocCommentSummaryEnd, docComment: true));
637
culture.Comments.Add(
new
(DocCommentSummaryStart, docComment: true));
638
culture.Comments.Add(
new
(SR.CulturePropertyComment1, docComment: true));
639
culture.Comments.Add(
new
(SR.CulturePropertyComment2, docComment: true));
640
culture.Comments.Add(
new
(DocCommentSummaryEnd, docComment: true));
783
property.Comments.Add(
new
(DocCommentSummaryStart, docComment: true));
784
property.Comments.Add(
new
(text, docComment: true));
785
property.Comments.Add(
new
(DocCommentSummaryEnd, docComment: true));
System.Windows.Forms.Design.Tests (21)
System\ComponentModel\Design\Serialization\CodeDomComponentSerializationServiceTests.cs (21)
149
new
CodeCommentStatement
(string.Empty),
150
new
CodeCommentStatement
("name1"),
151
new
CodeCommentStatement
(string.Empty),
163
new
CodeCommentStatement
(string.Empty),
164
new
CodeCommentStatement
("name2"),
165
new
CodeCommentStatement
(string.Empty),
251
new
CodeCommentStatement
(string.Empty),
252
new
CodeCommentStatement
("name"),
253
new
CodeCommentStatement
(string.Empty),
353
new
CodeCommentStatement
(string.Empty),
354
new
CodeCommentStatement
("name"),
355
new
CodeCommentStatement
(string.Empty),
398
new
CodeCommentStatement
(string.Empty),
399
new
CodeCommentStatement
("name"),
400
new
CodeCommentStatement
(string.Empty),
539
new
CodeCommentStatement
(string.Empty),
540
new
CodeCommentStatement
("name"),
541
new
CodeCommentStatement
(string.Empty),
588
new
CodeCommentStatement
(string.Empty),
589
new
CodeCommentStatement
("name"),
590
new
CodeCommentStatement
(string.Empty),
26 references to CodeCommentStatement
PresentationBuildTasks (1)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (1)
1504
CodeCommentStatement
ccs = new CodeCommentStatement(SummaryStartTag, true);
System (1)
src\libraries\shims\System\ref\System.cs (1)
44
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.CodeDom.
CodeCommentStatement
))]
System.CodeDom (22)
Microsoft\CSharp\CSharpCodeGenerator.cs (4)
546
if (e is
CodeCommentStatement
)
548
GenerateCommentStatement((
CodeCommentStatement
)e);
910
private void GenerateCommentStatement(
CodeCommentStatement
e)
921
foreach (
CodeCommentStatement
comment in e)
Microsoft\VisualBasic\VBCodeGenerator.cs (3)
1200
private static bool IsDocComment(
CodeCommentStatement
comment)
1211
foreach (
CodeCommentStatement
comment in e)
1219
foreach (
CodeCommentStatement
comment in e)
System\CodeDom\CodeCommentStatementCollection.cs (10)
17
public CodeCommentStatementCollection(
CodeCommentStatement
[] value)
22
public
CodeCommentStatement
this[int index]
24
get { return (
CodeCommentStatement
)List[index]; }
28
public int Add(
CodeCommentStatement
value) => List.Add(value);
30
public void AddRange(
CodeCommentStatement
[] value)
51
public bool Contains(
CodeCommentStatement
value) => List.Contains(value);
53
public void CopyTo(
CodeCommentStatement
[] array, int index) => List.CopyTo(array, index);
55
public int IndexOf(
CodeCommentStatement
value) => List.IndexOf(value);
57
public void Insert(int index,
CodeCommentStatement
value) => List.Insert(index, value);
59
public void Remove(
CodeCommentStatement
value) => List.Remove(value);
System\CodeDom\Compiler\CodeGenerator.cs (4)
871
if (e is
CodeCommentStatement
)
873
GenerateCommentStatement((
CodeCommentStatement
)e);
1465
protected virtual void GenerateCommentStatement(
CodeCommentStatement
e)
1480
foreach (
CodeCommentStatement
comment in e)
System\CodeDom\Compiler\CodeValidator.cs (1)
397
if (e is
CodeCommentStatement
)
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
419
else if (statement is
CodeCommentStatement
)
System.Windows.Forms.Design.Tests (1)
CodeDomHelpers.cs (1)
76
case
CodeCommentStatement
ccs: