1 write to _typeTable
System.Resources.Extensions (1)
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (1)
864_typeTable = new Type[numTypes];
8 references to _typeTable
System.Resources.Extensions (8)
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (8)
777[MemberNotNull(nameof(_typeTable))] 800[MemberNotNull(nameof(_typeTable))] 975if (typeIndex < 0 || typeIndex >= _typeTable.Length) 986return _typeTable[typeIndex] ?? UseReflectionToGetTypeLocal(typeIndex); 1000_typeTable[typeIndex] = Type.GetType(typeName, true); 1001Debug.Assert(_typeTable[typeIndex] != null, "Should have found a type!"); 1002return _typeTable[typeIndex]!; 1043Debug.Assert(typeIndex >= 0 && typeIndex < _typeTable.Length, "TypeCode is broken or corrupted!");