1 write to _typeTable
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (1)
858_typeTable = new Type[numTypes];
9 references to _typeTable
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.Core.cs (1)
171if (typeCode < 0 || typeCode >= ResourceTypeCode.StartOfUserTypes + _typeTable.Length)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (8)
771[MemberNotNull(nameof(_typeTable))] 794[MemberNotNull(nameof(_typeTable))] 969if (typeIndex < 0 || typeIndex >= _typeTable.Length) 980return _typeTable[typeIndex] ?? UseReflectionToGetTypeLocal(typeIndex); 994_typeTable[typeIndex] = Type.GetType(typeName, true); 995Debug.Assert(_typeTable[typeIndex] != null, "Should have found a type!"); 996return _typeTable[typeIndex]!; 1037Debug.Assert(typeIndex >= 0 && typeIndex < _typeTable.Length, "TypeCode is broken or corrupted!");