2 writes to TypeParameterNames
Microsoft.CodeAnalysis.Workspaces (2)
Shared\Utilities\DocumentationComment.cs (2)
88TypeParameterNames = ImmutableArray<string>.Empty; 162_comment.TypeParameterNames = _typeParameterNamesBuilder == null ? ImmutableArray<string>.Empty : _typeParameterNamesBuilder.ToImmutable();
11 references to TypeParameterNames
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.DocCommentFormatter.cs (1)
70var typeParameterNames = docComment.TypeParameterNames;
Microsoft.CodeAnalysis.Workspaces.UnitTests (8)
UtilityTest\DocumentationCommentTests.cs (8)
45Assert.Equal("T", comment.TypeParameterNames[0]); 71Assert.Equal("T", comment.TypeParameterNames[0]); 128Assert.Equal("z", comment.TypeParameterNames[0]); 129Assert.Equal("a", comment.TypeParameterNames[1]); 130Assert.Equal("b", comment.TypeParameterNames[2]); 206Assert.Equal(1, comment.TypeParameterNames.Length); 207Assert.Equal("a", comment.TypeParameterNames[0]); 245Assert.Equal(0, comment.TypeParameterNames.Length);
Microsoft.VisualStudio.LanguageServices (2)
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (2)
314if (documentationComment.TypeParameterNames.Length > 0) 324foreach (var typeParameterName in documentationComment.TypeParameterNames)