2 writes to TypeParameterNames
Microsoft.CodeAnalysis.Workspaces (2)
Shared\Utilities\DocumentationComment.cs (2)
88
TypeParameterNames
= 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)
70
var typeParameterNames = docComment.
TypeParameterNames
;
Microsoft.CodeAnalysis.Workspaces.UnitTests (8)
UtilityTest\DocumentationCommentTests.cs (8)
45
Assert.Equal("T", comment.
TypeParameterNames
[0]);
71
Assert.Equal("T", comment.
TypeParameterNames
[0]);
128
Assert.Equal("z", comment.
TypeParameterNames
[0]);
129
Assert.Equal("a", comment.
TypeParameterNames
[1]);
130
Assert.Equal("b", comment.
TypeParameterNames
[2]);
206
Assert.Equal(1, comment.
TypeParameterNames
.Length);
207
Assert.Equal("a", comment.
TypeParameterNames
[0]);
245
Assert.Equal(0, comment.
TypeParameterNames
.Length);
Microsoft.VisualStudio.LanguageServices (2)
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (2)
314
if (documentationComment.
TypeParameterNames
.Length > 0)
324
foreach (var typeParameterName in documentationComment.
TypeParameterNames
)