53 references to Comments
Microsoft.Build.Tasks.Core (15)
system.design\stronglytypedresourcebuilder.cs (15)
210srClass.Comments.Add(new CodeCommentStatement(DocCommentSummaryStart, true)); 211srClass.Comments.Add(new CodeCommentStatement(SR.GetString(SR.ClassDocComment), true)); 214srClass.Comments.Add(comment); 216srClass.Comments.Add(comment); 218srClass.Comments.Add(new CodeCommentStatement(DocCommentSummaryEnd, true)); 473resMgr.Comments.Add(new CodeCommentStatement(DocCommentSummaryStart, true)); 474resMgr.Comments.Add(new CodeCommentStatement(SR.GetString(SR.ResMgrPropertyComment), true)); 475resMgr.Comments.Add(new CodeCommentStatement(DocCommentSummaryEnd, true)); 485culture.Comments.Add(new CodeCommentStatement(DocCommentSummaryStart, true)); 486culture.Comments.Add(new CodeCommentStatement(SR.GetString(SR.CulturePropertyComment1), true)); 487culture.Comments.Add(new CodeCommentStatement(SR.GetString(SR.CulturePropertyComment2), true)); 488culture.Comments.Add(new CodeCommentStatement(DocCommentSummaryEnd, true)); 641prop.Comments.Add(new CodeCommentStatement(DocCommentSummaryStart, true)); 642prop.Comments.Add(new CodeCommentStatement(text, true)); 643prop.Comments.Add(new CodeCommentStatement(DocCommentSummaryEnd, true));
PresentationBuildTasks (3)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (3)
1507ctm.Comments.Add(ccs); 1509ctm.Comments.Add(ccs); 1511ctm.Comments.Add(ccs);
System.CodeDom (18)
Microsoft\CSharp\CSharpCodeGenerator.cs (9)
357GenerateCommentStatements(_currentMember.Comments); 386GenerateCommentStatements(_currentMember.Comments); 1334GenerateCommentStatements(_currentMember.Comments); 1431GenerateCommentStatements(_currentMember.Comments); 1743GenerateCommentStatements(_currentMember.Comments); 1842GenerateCommentStatements(e.Comments); 1977GenerateCommentStatements(member.Comments); 2061GenerateCommentStatements(_currentMember.Comments); 2092GenerateCommentStatements(_currentMember.Comments);
System\CodeDom\Compiler\CodeGenerator.cs (9)
60GenerateCommentStatements(e.Comments); 130GenerateCommentStatements(member.Comments); 214GenerateCommentStatements(_currentMember.Comments); 455GenerateCommentStatements(_currentMember.Comments); 490GenerateCommentStatements(_currentMember.Comments); 640GenerateCommentStatements(_currentMember.Comments); 677GenerateCommentStatements(_currentMember.Comments); 755GenerateCommentStatements(_currentMember.Comments); 859GenerateCommentStatements(_currentMember.Comments);
System.Windows.Forms.Design (17)
System\Resources\Tools\StronglyTypedResourceBuilder.cs (17)
375classType.Comments.Add(new(DocCommentSummaryStart, docComment: true)); 376classType.Comments.Add(new(SR.ClassDocComment, docComment: true)); 377classType.Comments.Add(new(DocCommentSummaryEnd, docComment: true)); 485classDeclaration.Comments.Add(new(SR.ClassComments1)); 486classDeclaration.Comments.Add(new(SR.ClassComments2)); 487classDeclaration.Comments.Add(new(SR.ClassComments3)); 488classDeclaration.Comments.Add(new(SR.ClassComments4)); 625resourceManagerProperty.Comments.Add(new(DocCommentSummaryStart, docComment: true)); 626resourceManagerProperty.Comments.Add(new(SR.ResMgrPropertyComment, docComment: true)); 627resourceManagerProperty.Comments.Add(new(DocCommentSummaryEnd, docComment: true)); 637culture.Comments.Add(new(DocCommentSummaryStart, docComment: true)); 638culture.Comments.Add(new(SR.CulturePropertyComment1, docComment: true)); 639culture.Comments.Add(new(SR.CulturePropertyComment2, docComment: true)); 640culture.Comments.Add(new(DocCommentSummaryEnd, docComment: true)); 783property.Comments.Add(new(DocCommentSummaryStart, docComment: true)); 784property.Comments.Add(new(text, docComment: true)); 785property.Comments.Add(new(DocCommentSummaryEnd, docComment: true));