4 writes to _fullName
System.Private.CoreLib (4)
src\libraries\System.Reflection.Metadata\src\System\Reflection\Metadata\TypeName.cs (4)
56
_fullName
= fullName;
123
_fullName
= _assemblyQualifiedName;
181
_fullName
= builder.ToString();
187
_fullName
= _fullName.Substring(0, _nestedNameLength);
13 references to _fullName
System.Private.CoreLib (13)
src\libraries\System.Reflection.Metadata\src\System\Reflection\Metadata\TypeName.cs (13)
103
if (
_fullName
is not null && AssemblyName is null)
177
if (
_fullName
is null)
183
else if (_nestedNameLength > 0 &&
_fullName
.Length > _nestedNameLength) // Declaring types
187
_fullName =
_fullName
.Substring(0, _nestedNameLength);
190
return
_fullName
!;
204
if (
_fullName
is null)
234
else if (_nestedNameLength > 0 &&
_fullName
.Length > _nestedNameLength) // Declaring types
238
builder.Append(
_fullName
.AsSpan(0, _nestedNameLength));
242
builder.Append(
_fullName
);
345
Debug.Assert(
_fullName
is not null);
346
ReadOnlySpan<char> name =
_fullName
.AsSpan();
391
Debug.Assert(rootTypeName.
_fullName
is not null);
392
ReadOnlySpan<char> rootFullName = rootTypeName.
_fullName
.AsSpan();