5 writes to _fullName
System.Reflection.Metadata (5)
System\Reflection\Metadata\TypeName.cs (5)
56
_fullName
= fullName;
81
_fullName
= fullName;
160
_fullName
= TypeNameParserHelpers.GetGenericTypeFullName(GetGenericTypeDefinition().FullName.AsSpan(),
171
_fullName
= TypeNameParserHelpers.GetRankOrModifierStringRepresentation(_rankOrModifier, ref builder);
182
_fullName
= _fullName.Substring(0, _nestedNameLength);
7 references to _fullName
System.Reflection.Metadata (7)
System\Reflection\Metadata\TypeName.cs (7)
156
if (
_fullName
is null)
178
else if (_nestedNameLength > 0 &&
_fullName
.Length > _nestedNameLength) // Declaring types
182
_fullName =
_fullName
.Substring(0, _nestedNameLength);
185
return
_fullName
!;
273
else if (_nestedNameLength > 0 &&
_fullName
is not null)
275
_name = TypeNameParserHelpers.GetName(
_fullName
.AsSpan(0, _nestedNameLength)).ToString();
463
return new TypeName(fullName:
_fullName
,