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)
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(); 608return new TypeName(fullName: _fullName,