5 writes to _fullName
System.Reflection.Metadata (5)
System\Reflection\Metadata\TypeName.cs (5)
56
_fullName
= fullName;
81
_fullName
= fullName;
123
_fullName
= _assemblyQualifiedName;
181
_fullName
= builder.ToString();
187
_fullName
= _fullName.Substring(0, _nestedNameLength);
14 references to _fullName
System.Reflection.Metadata (14)
System\Reflection\Metadata\TypeName.cs (14)
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();
608
return new TypeName(fullName:
_fullName
,