1 write to _nestedNameLength
System.Private.CoreLib (1)
src\libraries\System.Reflection.Metadata\src\System\Reflection\Metadata\TypeName.cs (1)
61_nestedNameLength = nestedNameLength;
11 references to _nestedNameLength
System.Private.CoreLib (11)
src\libraries\System.Reflection.Metadata\src\System\Reflection\Metadata\TypeName.cs (11)
183else if (_nestedNameLength > 0 && _fullName.Length > _nestedNameLength) // Declaring types 187_fullName = _fullName.Substring(0, _nestedNameLength); 234else if (_nestedNameLength > 0 && _fullName.Length > _nestedNameLength) // Declaring types 238builder.Append(_fullName.AsSpan(0, _nestedNameLength)); 347if (_nestedNameLength > 0) 349name = name.Slice(0, _nestedNameLength); 355name = name.Slice(_declaringType._nestedNameLength + 1); 393if (rootTypeName._nestedNameLength > 0) 395rootFullName = rootFullName.Slice(0, rootTypeName._nestedNameLength);