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)
1080if (typeIndex < 0 || typeIndex >= _typeTable.Length) { 1083if (_typeTable[typeIndex] == null) { 1088_typeTable[typeIndex] = (RuntimeType)Type.GetType(typeName, true); 1110Contract.Assert(_typeTable[typeIndex] != null, "Should have found a type!"); 1111return _typeTable[typeIndex]; 1118_safeToDeserialize = new bool[_typeTable.Length]; 1119for(int i=0; i<_typeTable.Length; i++) { 1230if (typeCode < 0 || typeCode >= ResourceTypeCode.StartOfUserTypes + _typeTable.Length) { 1254Contract.Assert(typeIndex >= 0 && typeIndex < _typeTable.Length, "TypeCode is broken or corrupted!");