1 write to _typeTable
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (1)
862
_typeTable
= new Type[numTypes];
9 references to _typeTable
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.Core.cs (1)
186
if (typeCode < 0 || typeCode >= ResourceTypeCode.StartOfUserTypes +
_typeTable
.Length)
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (8)
775
[MemberNotNull(nameof(
_typeTable
))]
798
[MemberNotNull(nameof(
_typeTable
))]
973
if (typeIndex < 0 || typeIndex >=
_typeTable
.Length)
984
return
_typeTable
[typeIndex] ?? UseReflectionToGetTypeLocal(typeIndex);
998
_typeTable
[typeIndex] = Type.GetType(typeName, true);
999
Debug.Assert(
_typeTable
[typeIndex] != null, "Should have found a type!");
1000
return
_typeTable
[typeIndex]!;
1041
Debug.Assert(typeIndex >= 0 && typeIndex <
_typeTable
.Length, "TypeCode is broken or corrupted!");