1 write to _typeTable
mscorlib (1)
system\resources\resourcereader.cs (1)
962
_typeTable
= new RuntimeType[numTypes];
9 references to _typeTable
mscorlib (9)
system\resources\resourcereader.cs (9)
1080
if (typeIndex < 0 || typeIndex >=
_typeTable
.Length) {
1083
if (
_typeTable
[typeIndex] == null) {
1088
_typeTable
[typeIndex] = (RuntimeType)Type.GetType(typeName, true);
1110
Contract.Assert(
_typeTable
[typeIndex] != null, "Should have found a type!");
1111
return
_typeTable
[typeIndex];
1118
_safeToDeserialize = new bool[
_typeTable
.Length];
1119
for(int i=0; i<
_typeTable
.Length; i++) {
1230
if (typeCode < 0 || typeCode >= ResourceTypeCode.StartOfUserTypes +
_typeTable
.Length) {
1254
Contract.Assert(typeIndex >= 0 && typeIndex <
_typeTable
.Length, "TypeCode is broken or corrupted!");