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)
103if (_fullName is not null && AssemblyName is null) 177if (_fullName is null) 183else if (_nestedNameLength > 0 && _fullName.Length > _nestedNameLength) // Declaring types 187_fullName = _fullName.Substring(0, _nestedNameLength); 190return _fullName!; 204if (_fullName is null) 234else if (_nestedNameLength > 0 && _fullName.Length > _nestedNameLength) // Declaring types 238builder.Append(_fullName.AsSpan(0, _nestedNameLength)); 242builder.Append(_fullName); 345Debug.Assert(_fullName is not null); 346ReadOnlySpan<char> name = _fullName.AsSpan(); 391Debug.Assert(rootTypeName._fullName is not null); 392ReadOnlySpan<char> rootFullName = rootTypeName._fullName.AsSpan();