5265 references to TableIndex
Microsoft.CodeAnalysis (175)
Emit\EditAndContinue\DeltaMetadataWriter.cs (146)
101_typeDefs = new DefinitionIndex<ITypeDefinition>(this.TryGetExistingTypeDefIndex, sizes[(int)TableIndex.TypeDef]); 102_eventDefs = new DefinitionIndex<IEventDefinition>(this.TryGetExistingEventDefIndex, sizes[(int)TableIndex.Event]); 103_fieldDefs = new DefinitionIndex<IFieldDefinition>(this.TryGetExistingFieldDefIndex, sizes[(int)TableIndex.Field]); 104_methodDefs = new DefinitionIndex<IMethodDefinition>(this.TryGetExistingMethodDefIndex, sizes[(int)TableIndex.MethodDef]); 105_propertyDefs = new DefinitionIndex<IPropertyDefinition>(this.TryGetExistingPropertyDefIndex, sizes[(int)TableIndex.Property]); 106_parameterDefs = new DefinitionIndex<IParameterDefinition>(this.TryGetExistingParameterDefIndex, sizes[(int)TableIndex.Param]); 108_genericParameters = new GenericParameterIndex(sizes[(int)TableIndex.GenericParam]); 109_eventMap = new EventOrPropertyMapIndex(this.TryGetExistingEventMapIndex, sizes[(int)TableIndex.EventMap]); 110_propertyMap = new EventOrPropertyMapIndex(this.TryGetExistingPropertyMapIndex, sizes[(int)TableIndex.PropertyMap]); 111_methodImpls = new MethodImplIndex(this, sizes[(int)TableIndex.MethodImpl]); 119_assemblyRefIndex = new HeapOrReferenceIndex<AssemblyIdentity>(this, lastRowId: sizes[(int)TableIndex.AssemblyRef]); 120_moduleRefIndex = new HeapOrReferenceIndex<string>(this, lastRowId: sizes[(int)TableIndex.ModuleRef]); 121_memberRefIndex = new InstanceAndStructuralReferenceIndex<ITypeMemberReference>(this, new MemberRefComparer(this), lastRowId: sizes[(int)TableIndex.MemberRef]); 122_methodSpecIndex = new InstanceAndStructuralReferenceIndex<IGenericMethodInstanceReference>(this, new MethodSpecComparer(this), lastRowId: sizes[(int)TableIndex.MethodSpec]); 123_typeRefIndex = new TypeReferenceIndex(this, lastRowId: sizes[(int)TableIndex.TypeRef]); 124_typeSpecIndex = new InstanceAndStructuralReferenceIndex<ITypeReference>(this, new TypeSpecComparer(this), lastRowId: sizes[(int)TableIndex.TypeSpec]); 125_standAloneSignatureIndex = new HeapOrReferenceIndex<BlobHandle>(this, lastRowId: sizes[(int)TableIndex.StandAloneSig]); 159sizes[(int)TableIndex.TypeRef] = _typeRefIndex.Rows.Count; 160sizes[(int)TableIndex.TypeDef] = _typeDefs.GetAdded().Count; 161sizes[(int)TableIndex.Field] = _fieldDefs.GetAdded().Count; 162sizes[(int)TableIndex.MethodDef] = _methodDefs.GetAdded().Count; 163sizes[(int)TableIndex.Param] = _parameterDefs.GetAdded().Count; 164sizes[(int)TableIndex.MemberRef] = _memberRefIndex.Rows.Count; 165sizes[(int)TableIndex.StandAloneSig] = _standAloneSignatureIndex.Rows.Count; 166sizes[(int)TableIndex.EventMap] = _eventMap.GetAdded().Count; 167sizes[(int)TableIndex.Event] = _eventDefs.GetAdded().Count; 168sizes[(int)TableIndex.PropertyMap] = _propertyMap.GetAdded().Count; 169sizes[(int)TableIndex.Property] = _propertyDefs.GetAdded().Count; 170sizes[(int)TableIndex.MethodImpl] = _methodImpls.GetAdded().Count; 171sizes[(int)TableIndex.ModuleRef] = _moduleRefIndex.Rows.Count; 172sizes[(int)TableIndex.TypeSpec] = _typeSpecIndex.Rows.Count; 173sizes[(int)TableIndex.AssemblyRef] = _assemblyRefIndex.Rows.Count; 174sizes[(int)TableIndex.GenericParam] = _genericParameters.GetAdded().Count; 175sizes[(int)TableIndex.MethodSpec] = _methodSpecIndex.Rows.Count; 763if (_previousGeneration.OriginalMetadata.MetadataReader.GetTableRowCount(TableIndex.MethodDef) >= MetadataTokens.GetRowNumber(handle)) 959: _previousGeneration.OriginalMetadata.MetadataReader.GetTableRowCount(TableIndex.CustomAttribute); 1070_ = MetadataTokens.TryGetTableIndex(parentHandle.Kind, out var parentTableIndex); 1072var deletedMemberRefHandle = MetadataTokens.EntityHandle(TableIndex.MemberRef, 0); 1084Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncLog] == 0); 1085Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncMap] == 0); 1104PopulateEncLogTableRows(TableIndex.AssemblyRef, previousSizes, deltaSizes); 1105PopulateEncLogTableRows(TableIndex.ModuleRef, previousSizes, deltaSizes); 1106PopulateEncLogTableRows(TableIndex.MemberRef, previousSizes, deltaSizes); 1107PopulateEncLogTableRows(TableIndex.MethodSpec, previousSizes, deltaSizes); 1108PopulateEncLogTableRows(TableIndex.TypeRef, previousSizes, deltaSizes); 1109PopulateEncLogTableRows(TableIndex.TypeSpec, previousSizes, deltaSizes); 1110PopulateEncLogTableRows(TableIndex.StandAloneSig, previousSizes, deltaSizes); 1112PopulateEncLogTableRows(_typeDefs, TableIndex.TypeDef); 1113PopulateEncLogTableRows(TableIndex.EventMap, previousSizes, deltaSizes); 1114PopulateEncLogTableRows(TableIndex.PropertyMap, previousSizes, deltaSizes); 1116PopulateEncLogTableEventsOrProperties(_eventDefs, TableIndex.Event, EditAndContinueOperation.AddEvent, _eventMap, TableIndex.EventMap); 1117PopulateEncLogTableFieldsOrMethods(_fieldDefs, TableIndex.Field, EditAndContinueOperation.AddField); 1118PopulateEncLogTableFieldsOrMethods(_methodDefs, TableIndex.MethodDef, EditAndContinueOperation.AddMethod); 1119PopulateEncLogTableEventsOrProperties(_propertyDefs, TableIndex.Property, EditAndContinueOperation.AddProperty, _propertyMap, TableIndex.PropertyMap); 1123PopulateEncLogTableRows(TableIndex.Constant, previousSizes, deltaSizes); 1132PopulateEncLogTableRows(TableIndex.DeclSecurity, previousSizes, deltaSizes); 1133PopulateEncLogTableRows(TableIndex.ClassLayout, previousSizes, deltaSizes); 1134PopulateEncLogTableRows(TableIndex.FieldLayout, previousSizes, deltaSizes); 1135PopulateEncLogTableRows(TableIndex.MethodSemantics, previousSizes, deltaSizes); 1136PopulateEncLogTableRows(TableIndex.MethodImpl, previousSizes, deltaSizes); 1137PopulateEncLogTableRows(TableIndex.ImplMap, previousSizes, deltaSizes); 1138PopulateEncLogTableRows(TableIndex.FieldRva, previousSizes, deltaSizes); 1139PopulateEncLogTableRows(TableIndex.NestedClass, previousSizes, deltaSizes); 1140PopulateEncLogTableRows(TableIndex.GenericParam, previousSizes, deltaSizes); 1141PopulateEncLogTableRows(TableIndex.InterfaceImpl, previousSizes, deltaSizes); 1142PopulateEncLogTableRows(TableIndex.GenericParamConstraint, previousSizes, deltaSizes); 1147TableIndex table, 1150TableIndex mapTable) 1173TableIndex tableIndex, 1225private void PopulateEncLogTableRows<T>(DefinitionIndex<T> index, TableIndex tableIndex) 1236private void PopulateEncLogTableRows(TableIndex tableIndex, ImmutableArray<int> previousSizes, ImmutableArray<int> deltaSizes) 1241private void PopulateEncLogTableRows(TableIndex tableIndex, int firstRowId, int tokenCount) 1262for (var tableIndex = (TableIndex)0; tableIndex <= TableIndex.GenericParamConstraint; tableIndex++) 1266case TableIndex.TypeRef: 1267case TableIndex.InterfaceImpl: 1268case TableIndex.MemberRef: 1269case TableIndex.Constant: 1270case TableIndex.DeclSecurity: 1271case TableIndex.ClassLayout: 1272case TableIndex.FieldLayout: 1273case TableIndex.StandAloneSig: 1274case TableIndex.EventMap: 1275case TableIndex.PropertyMap: 1276case TableIndex.MethodSemantics: 1277case TableIndex.MethodImpl: 1278case TableIndex.ModuleRef: 1279case TableIndex.TypeSpec: 1280case TableIndex.ImplMap: 1281case TableIndex.FieldRva: 1282case TableIndex.NestedClass: 1283case TableIndex.GenericParam: 1284case TableIndex.AssemblyRef: 1285case TableIndex.MethodSpec: 1286case TableIndex.GenericParamConstraint: 1290case TableIndex.TypeDef: 1294case TableIndex.Field: 1298case TableIndex.MethodDef: 1302case TableIndex.Event: 1306case TableIndex.Property: 1310case TableIndex.Param: 1311AddRowNumberTokens(tokens, TableIndex.Param, paramEncMapRows); 1314case TableIndex.CustomAttribute: 1315AddRowNumberTokens(tokens, TableIndex.CustomAttribute, _customAttributeRowIds); 1335AddDefinitionTokens(debugTokens, TableIndex.MethodDebugInformation, _methodDefs); 1352var handledTables = new TableIndex[] 1354TableIndex.Module, 1355TableIndex.TypeRef, 1356TableIndex.TypeDef, 1357TableIndex.Field, 1358TableIndex.MethodDef, 1359TableIndex.Param, 1360TableIndex.MemberRef, 1361TableIndex.Constant, 1362TableIndex.CustomAttribute, 1363TableIndex.DeclSecurity, 1364TableIndex.ClassLayout, 1365TableIndex.FieldLayout, 1366TableIndex.StandAloneSig, 1367TableIndex.EventMap, 1368TableIndex.Event, 1369TableIndex.PropertyMap, 1370TableIndex.Property, 1371TableIndex.MethodSemantics, 1372TableIndex.MethodImpl, 1373TableIndex.ModuleRef, 1374TableIndex.TypeSpec, 1375TableIndex.ImplMap, 1376TableIndex.FieldRva, 1377TableIndex.EncLog, 1378TableIndex.EncMap, 1379TableIndex.Assembly, 1380TableIndex.AssemblyRef, 1381TableIndex.MethodSpec, 1382TableIndex.NestedClass, 1383TableIndex.GenericParam, 1384TableIndex.InterfaceImpl, 1385TableIndex.GenericParamConstraint, 1390if (handledTables.Contains((TableIndex)i)) 1402TableIndex tableIndex, 1409private static void AddReferencedTokens(ArrayBuilder<EntityHandle> tokens, TableIndex tableIndex, int firstRowId, int nTokens) 1417private static void AddDefinitionTokens<T>(ArrayBuilder<EntityHandle> tokens, TableIndex tableIndex, DefinitionIndex<T> index) 1426private static void AddRowNumberTokens(ArrayBuilder<EntityHandle> tokens, TableIndex tableIndex, ArrayBuilder<int> rowNumbers)
Emit\EditAndContinue\EmitBaseline.cs (9)
343Debug.Assert(tableEntriesAdded[(int)TableIndex.TypeDef] >= typesAdded.Count); 344Debug.Assert(tableEntriesAdded[(int)TableIndex.Event] >= eventsAdded.Count); 345Debug.Assert(tableEntriesAdded[(int)TableIndex.Field] >= fieldsAdded.Count); 346Debug.Assert(tableEntriesAdded[(int)TableIndex.MethodDef] >= methodsAdded.Count); 347Debug.Assert(tableEntriesAdded[(int)TableIndex.Property] >= propertiesAdded.Count); 348Debug.Assert(tableEntriesAdded[(int)TableIndex.EventMap] >= eventMapAdded.Count); 349Debug.Assert(tableEntriesAdded[(int)TableIndex.PropertyMap] >= propertyMapAdded.Count); 495sizes[i] = reader.GetTableRowCount((TableIndex)i) + delta[i]; 534int n = reader.GetTableRowCount(TableIndex.MethodImpl);
PEWriter\MetadataWriter.cs (20)
1718Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncLog] == 0); 1719Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncMap] == 0); 1961metadata.SetCapacity(TableIndex.AssemblyRef, assemblyRefs.Count); 2023AddCustomAttributesToTable(sortedGenericParameters, TableIndex.GenericParam); 2098private void AddCustomAttributesToTable<T>(IEnumerable<T> parentList, TableIndex tableIndex) 2212metadata.SetCapacity(TableIndex.Event, eventDefs.Count); 2236metadata.SetCapacity(TableIndex.ExportedType, exportedTypes.Length); 2380metadata.SetCapacity(TableIndex.Field, fieldDefs.Count); 2447metadata.SetCapacity(TableIndex.File, _fileRefList.Count); 2588metadata.SetCapacity(TableIndex.MemberRef, memberRefs.Count); 2601metadata.SetCapacity(TableIndex.MethodImpl, methodImplList.Count); 2615metadata.SetCapacity(TableIndex.MethodSpec, methodSpecs.Count); 2628metadata.SetCapacity(TableIndex.MethodDef, methodDefs.Count); 2651metadata.SetCapacity(TableIndex.MethodSemantics, propertyDefs.Count * 2 + eventDefs.Count * 2); 2713metadata.SetCapacity(TableIndex.ModuleRef, moduleRefs.Count); 2753metadata.SetCapacity(TableIndex.Param, parameterDefs.Count); 2767metadata.SetCapacity(TableIndex.Property, propertyDefs.Count); 2781metadata.SetCapacity(TableIndex.TypeDef, typeDefs.Count); 2838metadata.SetCapacity(TableIndex.TypeRef, typeRefs.Count); 2898metadata.SetCapacity(TableIndex.TypeSpec, typeSpecs.Count);
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (5)
CodeGen\CodeGenDynamicTests.cs (1)
2286Assert.Equal(1, pe.Module.GetMetadataReader().GetTableRowCount(TableIndex.TypeSpec));
Emit\EmitMetadataTests.cs (4)
219Assert.Equal(0, peFileReader.GetTableRowCount(TableIndex.File)); 220Assert.Equal(0, peFileReader.GetTableRowCount(TableIndex.ModuleRef)); 253Assert.Equal(2, reader.GetTableRowCount(TableIndex.File)); 263Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef));
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (3148)
Emit\EditAndContinue\EditAndContinueClosureTests.cs (277)
87Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 88Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 89Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 90Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 91Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 92Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 93Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 94Row(1, TableIndex.Field, EditAndContinueOperation.Default), 95Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 96Row(2, TableIndex.Field, EditAndContinueOperation.Default), 97Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 98Row(3, TableIndex.Field, EditAndContinueOperation.Default), 99Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 100Row(4, TableIndex.Field, EditAndContinueOperation.Default), 101Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 102Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 103Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 104Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 105Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 106Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 107Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 108Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 109Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 110Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 111Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 112Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 113Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 114Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 115Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 116Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 117Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 118Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 119Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 120Row(6, TableIndex.Param, EditAndContinueOperation.Default), 121Row(7, TableIndex.Param, EditAndContinueOperation.Default), 122Row(8, TableIndex.Param, EditAndContinueOperation.Default), 123Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 124Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 125Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 126Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 127Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 128Row(3, TableIndex.NestedClass, EditAndContinueOperation.Default) 270Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 271Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 272Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)); 333Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 334Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 335Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 336Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 404Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 405Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 406Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 407Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 408Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 409Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 459Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 460Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 461Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 512Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 513Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 514Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 573Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 574Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 575Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 576Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)); 626Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 627Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 628Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 629Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 681Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 682Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 683Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 684Row(1, TableIndex.Param, EditAndContinueOperation.Default), 685Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 736Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 737Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 738Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 739Row(1, TableIndex.Param, EditAndContinueOperation.Default), 740Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 793Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 794Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 795Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 796Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 935Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 936Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 937Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 938Row(1, TableIndex.Param, EditAndContinueOperation.Default), 939Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1011Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1012Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1013Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1014Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1015Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1016Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1017Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1018Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1019Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1020Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1021Row(3, TableIndex.Param, EditAndContinueOperation.Default)); 1077Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 1078Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1079Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)); 1138Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1139Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 1140Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 1141Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 1142Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 1143Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 1144Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 1145Row(21, TableIndex.MethodDef, EditAndContinueOperation.Default), 1146Row(6, TableIndex.Param, EditAndContinueOperation.Default), 1147Row(7, TableIndex.Param, EditAndContinueOperation.Default), 1148Row(8, TableIndex.Param, EditAndContinueOperation.Default), 1149Row(9, TableIndex.Param, EditAndContinueOperation.Default), 1150Row(10, TableIndex.Param, EditAndContinueOperation.Default), 1151Row(11, TableIndex.Param, EditAndContinueOperation.Default), 1152Row(12, TableIndex.Param, EditAndContinueOperation.Default)); 1227Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1228Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1229Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1230Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1231Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1232Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1233Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 1234Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 1235Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 1236Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 1237Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 1238Row(5, TableIndex.Param, EditAndContinueOperation.Default), 1239Row(6, TableIndex.Param, EditAndContinueOperation.Default), 1240Row(7, TableIndex.Param, EditAndContinueOperation.Default), 1241Row(8, TableIndex.Param, EditAndContinueOperation.Default), 1242Row(9, TableIndex.Param, EditAndContinueOperation.Default), 1243Row(10, TableIndex.Param, EditAndContinueOperation.Default), 1244Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1245Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1315Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1316Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1317Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1318Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1319Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 1320Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 1321Row(5, TableIndex.Param, EditAndContinueOperation.Default), 1322Row(6, TableIndex.Param, EditAndContinueOperation.Default), 1323Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1399Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1400Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1401Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1402Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1403Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1404Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1405Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1406Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1407Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1408Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1409Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 1410Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1411Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1412Row(4, TableIndex.Param, EditAndContinueOperation.Default), 1413Row(5, TableIndex.Param, EditAndContinueOperation.Default), 1414Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1415Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1416Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1489Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1490Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1491Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1492Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1493Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 1494Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1495Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1496Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1497Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1498Row(4, TableIndex.Param, EditAndContinueOperation.Default), 1499Row(5, TableIndex.Param, EditAndContinueOperation.Default), 1500Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1571Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1572Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1573Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1574Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1575Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 1576Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1577Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1578Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1579Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 2812Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2813Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 2814Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 2815Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 2816Row(2, TableIndex.Param, EditAndContinueOperation.Default), 2817Row(3, TableIndex.Param, EditAndContinueOperation.Default)); 4172Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4173Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4174Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 4175Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4257Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4258Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4259Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 4260Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4331Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4332Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 4333Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4405Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4406Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4407Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4408Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4409Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 4494Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4495Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4496Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4497Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4498Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 4596Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4597Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4598Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4599Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 4600Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 4601Row(1, TableIndex.Param, EditAndContinueOperation.Default) 4651Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4652Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4653Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4654Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 4710Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4711Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4712Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4713Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 4762Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4763Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 4764Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 4765Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4766Row(3, TableIndex.Field, EditAndContinueOperation.Default), 4767Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4768Row(4, TableIndex.Field, EditAndContinueOperation.Default), 4769Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4770Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 4771Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4772Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 4773Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4774Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 4775Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4776Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 4777Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4778Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 4779Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4780Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default)); 4783Handle(4, TableIndex.TypeDef), 4784Handle(5, TableIndex.TypeDef), 4785Handle(3, TableIndex.Field), 4786Handle(4, TableIndex.Field), 4787Handle(6, TableIndex.MethodDef), 4788Handle(7, TableIndex.MethodDef), 4789Handle(8, TableIndex.MethodDef), 4790Handle(9, TableIndex.MethodDef), 4791Handle(10, TableIndex.MethodDef), 4792Handle(5, TableIndex.CustomAttribute), 4793Handle(2, TableIndex.StandAloneSig), 4794Handle(2, TableIndex.NestedClass)); 9550Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 9551Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 9552Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default) 9671Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 9672Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 9673Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 9674Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 9675Row(2, TableIndex.Field, EditAndContinueOperation.Default), 9676Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 9677Row(3, TableIndex.Field, EditAndContinueOperation.Default), 9678Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 9679Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 9680Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 9681Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 9682Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 9683Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 9684Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 9685Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9686Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9687Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9688Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default)
Emit\EditAndContinue\EditAndContinuePdbTests.cs (43)
161Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 162Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 163Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 164Row(5, TableIndex.Field, EditAndContinueOperation.Default), 165Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 166Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 167Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 168Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 169Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 170Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 171Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default)); 178Handle(2, TableIndex.MethodDebugInformation), 179Handle(4, TableIndex.MethodDebugInformation), 180Handle(8, TableIndex.MethodDebugInformation), 181Handle(9, TableIndex.MethodDebugInformation), 182Handle(10, TableIndex.MethodDebugInformation), 183Handle(11, TableIndex.MethodDebugInformation)); 284Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 285Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 286Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 287Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 288Row(6, TableIndex.Field, EditAndContinueOperation.Default), 289Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 290Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 291Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 292Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 293Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 294Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 295Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 296Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 297Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 298Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 299Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 300Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 307Handle(1, TableIndex.MethodDebugInformation), 308Handle(2, TableIndex.MethodDebugInformation), 309Handle(4, TableIndex.MethodDebugInformation), 310Handle(8, TableIndex.MethodDebugInformation), 311Handle(9, TableIndex.MethodDebugInformation), 312Handle(10, TableIndex.MethodDebugInformation), 313Handle(11, TableIndex.MethodDebugInformation), 314Handle(12, TableIndex.MethodDebugInformation), 315Handle(13, TableIndex.MethodDebugInformation));
Emit\EditAndContinue\EditAndContinueStateMachineTests.cs (380)
72Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 73Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 74Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 75Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 76Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 77Row(1, TableIndex.Field, EditAndContinueOperation.Default), 78Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 79Row(2, TableIndex.Field, EditAndContinueOperation.Default), 80Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 81Row(3, TableIndex.Field, EditAndContinueOperation.Default), 82Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 83Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 84Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 85Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 86Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 87Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 88Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 89Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 90Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 91Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 92Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 93Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 94Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 95Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 96Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 97Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 98Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 99Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 100Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 101Row(1, TableIndex.Property, EditAndContinueOperation.Default), 102Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 103Row(2, TableIndex.Property, EditAndContinueOperation.Default), 104Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 105Row(1, TableIndex.Param, EditAndContinueOperation.Default), 106Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 107Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 108Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 109Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 110Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 111Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 112Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 113Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 114Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 115Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 116Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 117Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 118Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 119Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 120Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 121Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 122Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 123Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 124Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 125Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 126Row(2, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 127Row(3, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 128Row(4, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 129Row(5, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)); 132Handle(3, TableIndex.TypeDef), 133Handle(1, TableIndex.Field), 134Handle(2, TableIndex.Field), 135Handle(3, TableIndex.Field), 136Handle(2, TableIndex.MethodDef), 137Handle(3, TableIndex.MethodDef), 138Handle(4, TableIndex.MethodDef), 139Handle(5, TableIndex.MethodDef), 140Handle(6, TableIndex.MethodDef), 141Handle(7, TableIndex.MethodDef), 142Handle(8, TableIndex.MethodDef), 143Handle(9, TableIndex.MethodDef), 144Handle(10, TableIndex.MethodDef), 145Handle(1, TableIndex.Param), 146Handle(1, TableIndex.InterfaceImpl), 147Handle(2, TableIndex.InterfaceImpl), 148Handle(3, TableIndex.InterfaceImpl), 149Handle(4, TableIndex.InterfaceImpl), 150Handle(5, TableIndex.InterfaceImpl), 151Handle(4, TableIndex.CustomAttribute), 152Handle(5, TableIndex.CustomAttribute), 153Handle(6, TableIndex.CustomAttribute), 154Handle(7, TableIndex.CustomAttribute), 155Handle(8, TableIndex.CustomAttribute), 156Handle(9, TableIndex.CustomAttribute), 157Handle(10, TableIndex.CustomAttribute), 158Handle(11, TableIndex.CustomAttribute), 159Handle(12, TableIndex.CustomAttribute), 160Handle(1, TableIndex.StandAloneSig), 161Handle(2, TableIndex.StandAloneSig), 162Handle(1, TableIndex.PropertyMap), 163Handle(1, TableIndex.Property), 164Handle(2, TableIndex.Property), 165Handle(1, TableIndex.MethodSemantics), 166Handle(2, TableIndex.MethodSemantics), 167Handle(1, TableIndex.MethodImpl), 168Handle(2, TableIndex.MethodImpl), 169Handle(3, TableIndex.MethodImpl), 170Handle(4, TableIndex.MethodImpl), 171Handle(5, TableIndex.MethodImpl), 172Handle(6, TableIndex.MethodImpl), 173Handle(7, TableIndex.MethodImpl), 174Handle(1, TableIndex.NestedClass)); 260Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 261Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 262Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 263Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 264Row(1, TableIndex.Field, EditAndContinueOperation.Default), 265Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 266Row(2, TableIndex.Field, EditAndContinueOperation.Default), 267Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 268Row(3, TableIndex.Field, EditAndContinueOperation.Default), 269Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 270Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 271Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 272Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 273Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 274Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 275Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 276Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 277Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 278Row(1, TableIndex.Param, EditAndContinueOperation.Default), 279Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 280Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 281Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 282Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 283Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 284Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 285Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 286Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)); 366Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 367Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 368Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 369Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 370Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 371Row(2, TableIndex.Field, EditAndContinueOperation.Default), 372Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 373Row(3, TableIndex.Field, EditAndContinueOperation.Default), 374Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 375Row(4, TableIndex.Field, EditAndContinueOperation.Default), 376Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 377Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 378Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 379Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 380Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 381Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 382Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 383Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 384Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 385Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 386Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 387Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 388Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 389Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 390Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 391Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 392Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 393Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 394Row(1, TableIndex.Property, EditAndContinueOperation.Default), 395Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 396Row(2, TableIndex.Property, EditAndContinueOperation.Default), 397Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 398Row(1, TableIndex.Param, EditAndContinueOperation.Default), 399Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 400Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 401Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 402Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 403Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 404Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 405Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 406Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 407Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 408Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 409Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 410Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 411Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 412Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 413Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 414Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 415Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 416Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 417Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 418Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 419Row(2, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 420Row(3, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 421Row(4, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 422Row(5, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)); 468Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 469Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 470Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 471Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 472Row(1, TableIndex.Field, EditAndContinueOperation.Default), 473Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 474Row(2, TableIndex.Field, EditAndContinueOperation.Default), 475Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 476Row(3, TableIndex.Field, EditAndContinueOperation.Default), 477Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 478Row(4, TableIndex.Field, EditAndContinueOperation.Default), 479Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 480Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 481Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 482Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 483Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 484Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 485Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 486Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 487Row(1, TableIndex.Param, EditAndContinueOperation.Default), 488Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 489Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 490Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 491Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 492Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 493Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 494Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 495Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)); 539new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // row id 0 == delete 542Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 543Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 544Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Delete IteratorStateMachineAttribute 589new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // row id 0 == delete 590new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // row id 0 == delete 593Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 594Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 595Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Delete AsyncStateMachineAttribute 596Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Delete DebuggerStepThroughAttribute 659Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 660Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 661Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 662Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 663Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 664Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 665Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 666Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 667Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 668Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 669Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 670Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 671Row(1, TableIndex.Param, EditAndContinueOperation.Default), 672Row(2, TableIndex.Param, EditAndContinueOperation.Default), 673Row(3, TableIndex.Param, EditAndContinueOperation.Default), 674Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 675Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 676Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 677Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 678Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 679Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 766Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 767Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 768Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 769Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 770Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 771Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 985Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 986Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 987Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 988Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 989Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 990Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 3681Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3682Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3683Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3684Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3685Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3686Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3687Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3781Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3782Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3783Row(7, TableIndex.Field, EditAndContinueOperation.Default), 3784Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3785Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3786Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3787Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3788Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3789Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3890Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3891Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3892Row(7, TableIndex.Field, EditAndContinueOperation.Default), 3893Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3894Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3895Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3896Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3897Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3898Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3996Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3997Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3998Row(5, TableIndex.Field, EditAndContinueOperation.Default), 3999Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4000Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4001Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4002Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4003Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4110Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4111Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4112Row(7, TableIndex.Field, EditAndContinueOperation.Default), 4113Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4114Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4115Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4116Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4117Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 7467Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7468Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7469Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7470Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7471Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7472Row(16, TableIndex.Field, EditAndContinueOperation.Default), 7473Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7474Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7475Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7476Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7477Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7478Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7479Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7480Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 7580Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7581Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7582Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7583Row(17, TableIndex.Field, EditAndContinueOperation.Default), 7584Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7585Row(18, TableIndex.Field, EditAndContinueOperation.Default), 7586Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7587Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7588Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7589Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 7689Row(13, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7690Row(14, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7691Row(15, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7692Row(16, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7693Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7694Row(19, TableIndex.Field, EditAndContinueOperation.Default), 7695Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7696Row(20, TableIndex.Field, EditAndContinueOperation.Default), 7697Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7698Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7699Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7700Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7701Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7702Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7703Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7704Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 8253Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8254Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8255Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8256Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8257Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8258Row(11, TableIndex.Field, EditAndContinueOperation.Default), 8259Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 8260Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 8261Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 8262Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 8263Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8264Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8265Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8266Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 8397Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8398Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8399Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8400Row(12, TableIndex.Field, EditAndContinueOperation.Default), 8401Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 8402Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 8403Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8404Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 8572Row(13, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8573Row(14, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8574Row(15, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8575Row(16, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8576Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8577Row(13, TableIndex.Field, EditAndContinueOperation.Default), 8578Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8579Row(14, TableIndex.Field, EditAndContinueOperation.Default), 8580Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 8581Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 8582Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 8583Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 8584Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8585Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8586Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8587Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 8956Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 8957Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)
Emit\EditAndContinue\EditAndContinueTestBase.cs (2)
147internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation) 152internal static EntityHandle Handle(int rowNumber, TableIndex table)
Emit\EditAndContinue\EditAndContinueTests.cs (2445)
87Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 88Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 89Row(1, TableIndex.Field, EditAndContinueOperation.Default), 90Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 91Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 92Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 93Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 98Handle(3, TableIndex.TypeDef), 99Handle(1, TableIndex.Field), 100Handle(2, TableIndex.MethodDef), 101Handle(3, TableIndex.MethodDef), 102Handle(4, TableIndex.CustomAttribute) 169Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 170Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 171Row(1, TableIndex.Field, EditAndContinueOperation.Default), 172Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 173Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 174Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 175Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 176Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 177Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 181Handle(3, TableIndex.TypeDef), 182Handle(1, TableIndex.Field), 183Handle(1, TableIndex.MethodDef), 184Handle(2, TableIndex.MethodDef), 185Handle(3, TableIndex.MethodDef), 186Handle(4, TableIndex.CustomAttribute) 538Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 539Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.F 542Handle(2, TableIndex.MethodDef), 543Handle(2, TableIndex.StandAloneSig)); 601Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 602Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 603Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 606Handle(1, TableIndex.MethodDef), 607Handle(1, TableIndex.Param), 608Handle(2, TableIndex.StandAloneSig)); 627Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 628Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 629Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 632Handle(1, TableIndex.MethodDef), 633Handle(1, TableIndex.Param), 634Handle(3, TableIndex.StandAloneSig)); 674Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 675Row(1, TableIndex.Param, EditAndContinueOperation.Default), 676Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 680Handle(4, TableIndex.MethodDef), 681Handle(1, TableIndex.Param), 682Handle(12, TableIndex.CustomAttribute) 721Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 722Row(1, TableIndex.Param, EditAndContinueOperation.Default) 726Handle(1, TableIndex.MethodDef), 727Handle(1, TableIndex.Param) 768Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 769Row(1, TableIndex.Param, EditAndContinueOperation.Default), 770Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 774Handle(3, TableIndex.MethodDef), 775Handle(1, TableIndex.Param), 776Handle(9, TableIndex.CustomAttribute) 829Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 830Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 831Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 832Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 833Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 834Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 835Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.F 838Handle(7, TableIndex.TypeRef), 839Handle(8, TableIndex.TypeRef), 840Handle(2, TableIndex.MethodDef), 841Handle(6, TableIndex.MemberRef), 842Handle(2, TableIndex.StandAloneSig), 843Handle(2, TableIndex.TypeSpec), 844Handle(2, TableIndex.AssemblyRef)); 873new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 874new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 875new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 878new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)) 895Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 896Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Row 4, so updating existing CustomAttribute 901Handle(7, TableIndex.MethodDef), 902Handle(4, TableIndex.CustomAttribute), 907new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)) 933Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 934Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 935Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating the existing custom attribute 936Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // adding a new CustomAttribute for method F 937Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // adding a new CustomAttribute for type C 942Handle(8, TableIndex.TypeDef), 943Handle(7, TableIndex.MethodDef), 944Handle(4, TableIndex.CustomAttribute), 945Handle(5, TableIndex.CustomAttribute), 946Handle(6, TableIndex.CustomAttribute), 951new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 952new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 953new CustomAttributeRow(Handle(8, TableIndex.TypeDef), Handle(5, TableIndex.MethodDef)), 971Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 972Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating the existing custom attribute 973Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating a row that was new in Generation 2 974Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) // adding a new CustomAttribute, and skipping row 6 which is not for the method being emitted 979Handle(7, TableIndex.MethodDef), 980Handle(4, TableIndex.CustomAttribute), 981Handle(5, TableIndex.CustomAttribute), 982Handle(7, TableIndex.CustomAttribute), 987new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), 988new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 989new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 1029new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1030new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1031new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1034new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 1037new CustomAttributeRow(Handle(9, TableIndex.TypeDef), Handle(1, TableIndex.MethodDef)), 1040new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 1043new CustomAttributeRow(Handle(10, TableIndex.TypeDef), Handle(2, TableIndex.MethodDef)) 1070Handle(8, TableIndex.MethodDef), 1071Handle(10, TableIndex.MethodDef), 1072Handle(4, TableIndex.CustomAttribute), 1073Handle(6, TableIndex.CustomAttribute), 1074Handle(8, TableIndex.CustomAttribute), 1075Handle(9, TableIndex.CustomAttribute), 1076Handle(10, TableIndex.CustomAttribute) 1081Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1082Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1083Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // update existing row 1084Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // update existing row 1085Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // add new row 1086Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // add new row 1087Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default),// add new row 1092new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 1093new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), 1094new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), 1095new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 1096new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)), 1142new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1143new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1144new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1145new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 1168new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // Parent row id is 0, signifying a delete 1171Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1172Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 1173Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 1174Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 1175Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1176Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1177Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so updating existing CustomAttribute 1180Handle(7, TableIndex.TypeRef), 1181Handle(8, TableIndex.TypeRef), 1182Handle(2, TableIndex.MethodDef), 1183Handle(6, TableIndex.MemberRef), 1184Handle(4, TableIndex.CustomAttribute), 1185Handle(2, TableIndex.StandAloneSig), 1186Handle(2, TableIndex.AssemblyRef)); 1205new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(7, TableIndex.MemberRef))); 1208Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1209Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 1210Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 1211Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 1212Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 1213Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 1214Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1215Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1216Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, updating the original row back to a real one 1219Handle(9, TableIndex.TypeRef), 1220Handle(10, TableIndex.TypeRef), 1221Handle(11, TableIndex.TypeRef), 1222Handle(2, TableIndex.MethodDef), 1223Handle(7, TableIndex.MemberRef), 1224Handle(8, TableIndex.MemberRef), 1225Handle(4, TableIndex.CustomAttribute), 1226Handle(3, TableIndex.StandAloneSig), 1227Handle(3, TableIndex.AssemblyRef)); 1266new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1267new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1268new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef))); 1291new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(5, TableIndex.MemberRef))); 1294Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1295Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 1296Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 1297Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 1298Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 1299Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 1300Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1301Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1302Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so adding a new CustomAttribute 1305Handle(6, TableIndex.TypeRef), 1306Handle(7, TableIndex.TypeRef), 1307Handle(8, TableIndex.TypeRef), 1308Handle(2, TableIndex.MethodDef), 1309Handle(5, TableIndex.MemberRef), 1310Handle(6, TableIndex.MemberRef), 1311Handle(4, TableIndex.CustomAttribute), 1312Handle(2, TableIndex.StandAloneSig), 1313Handle(2, TableIndex.AssemblyRef)); 1331new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // 0, delete 1334Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1335Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 1336Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1337Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1338Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so updating existing CustomAttribute 1341Handle(9, TableIndex.TypeRef), 1342Handle(2, TableIndex.MethodDef), 1343Handle(4, TableIndex.CustomAttribute), 1344Handle(3, TableIndex.StandAloneSig), 1345Handle(3, TableIndex.AssemblyRef)); 1363new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(7, TableIndex.MemberRef))); 1366Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1367Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 1368Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 1369Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 1370Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 1371Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 1372Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1373Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1374Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, update the previously deleted row 1377Handle(10, TableIndex.TypeRef), 1378Handle(11, TableIndex.TypeRef), 1379Handle(12, TableIndex.TypeRef), 1380Handle(2, TableIndex.MethodDef), 1381Handle(7, TableIndex.MemberRef), 1382Handle(8, TableIndex.MemberRef), 1383Handle(4, TableIndex.CustomAttribute), 1384Handle(4, TableIndex.StandAloneSig), 1385Handle(4, TableIndex.AssemblyRef)); 1417new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1418new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1419new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1422new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // Row 4 1423new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // Row 5 1426new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // Row 6 1429new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), // Row 7 1430new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), // Row 8 1452Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1453Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1454Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1455Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1456Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1457Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1458Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1459Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1460Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1465Handle(9, TableIndex.MethodDef), 1466Handle(10, TableIndex.MethodDef), 1467Handle(11, TableIndex.MethodDef), 1468Handle(4, TableIndex.CustomAttribute), 1469Handle(5, TableIndex.CustomAttribute), 1470Handle(6, TableIndex.CustomAttribute), 1471Handle(7, TableIndex.CustomAttribute), 1472Handle(8, TableIndex.CustomAttribute), 1473Handle(9, TableIndex.CustomAttribute), 1478new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A2] delete 1479new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A5] delete 1480new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // F [A1] -> [A2] 1481new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)),// G [A3] -> [A4] 1482new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)),// G [A3] add with RowId 9 1483new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)),// H [A6] -> [A7] 1504Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1505Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1506Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1507Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1508Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1509Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1510Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1511Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1516Handle(10, TableIndex.MethodDef), 1517Handle(11, TableIndex.MethodDef), 1518Handle(6, TableIndex.CustomAttribute), 1519Handle(7, TableIndex.CustomAttribute), 1520Handle(8, TableIndex.CustomAttribute), 1521Handle(9, TableIndex.CustomAttribute), 1522Handle(10, TableIndex.CustomAttribute), 1523Handle(11, TableIndex.CustomAttribute), 1528new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // G [A4] delete 1529new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // G [A3] delete 1530new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), // H [A5] 1531new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), // H [A6] 1532new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)), // H [A7] add with RowId 10 1533new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(8, TableIndex.MethodDef)), // H [A8] add with RowId 11 1553Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1554Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1555Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1556Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1557Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1562Handle(11, TableIndex.MethodDef), 1563Handle(7, TableIndex.CustomAttribute), 1564Handle(8, TableIndex.CustomAttribute), 1565Handle(10, TableIndex.CustomAttribute), 1566Handle(11, TableIndex.CustomAttribute), 1571new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A5] delete 1572new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A6] delete 1573new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A7] delete 1574new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A8] delete 1604new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1605new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1606new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1625Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1626Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1631Handle(6, TableIndex.MethodDef), 1632Handle(4, TableIndex.CustomAttribute), 1637new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // G: [A1] add RowId 4 1656Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1657Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1662Handle(5, TableIndex.MethodDef), 1663Handle(5, TableIndex.CustomAttribute), 1668new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // F: [A2] add RowId 5 1688Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1689Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1690Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1691Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1696Handle(5, TableIndex.MethodDef), 1697Handle(6, TableIndex.MethodDef), 1698Handle(4, TableIndex.CustomAttribute), 1699Handle(5, TableIndex.CustomAttribute), 1704new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // G: [A2] -> [A4] 1705new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), // F: [A1] -> [A3] 1733new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1734new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1735new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1738new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // Row 4 1756Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1757Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1758Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1763Handle(4, TableIndex.MethodDef), 1764Handle(4, TableIndex.CustomAttribute), 1765Handle(5, TableIndex.CustomAttribute), 1770new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // F [A1] -> [A2] 1771new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // F [A3] add RowId 5 1789Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1790Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1791Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1796Handle(4, TableIndex.MethodDef), 1797Handle(4, TableIndex.CustomAttribute), 1798Handle(5, TableIndex.CustomAttribute), 1803new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A2] delete 1804new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A3] delete 1845new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1846new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1847new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1848new CustomAttributeRow(Handle(3, TableIndex.TypeDef), Handle(4, TableIndex.MemberRef))); 1869new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(8, TableIndex.MemberRef))); 1872Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1873Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 1874Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1875Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1876Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // row 5 = new custom attribute 1879Handle(1, TableIndex.MethodDef), 1880Handle(5, TableIndex.MethodDef), 1881Handle(1, TableIndex.Param), 1882Handle(5, TableIndex.CustomAttribute), 1883Handle(2, TableIndex.StandAloneSig)); 2528g.VerifyTableSize(TableIndex.MethodDef, 6); 2559Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 2560Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2561Row(4, TableIndex.Field, EditAndContinueOperation.Default), 2562Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 2563Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 2564Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 2565Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2566Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 2567Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 2571Handle(4, TableIndex.TypeDef), 2572Handle(4, TableIndex.Field), 2573Handle(1, TableIndex.MethodDef), 2574Handle(5, TableIndex.MethodDef), 2575Handle(6, TableIndex.MethodDef), 2576Handle(7, TableIndex.MethodDef), 2577Handle(5, TableIndex.CustomAttribute) 2867Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default) 2872Handle(2, TableIndex.MethodDef) 3022Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3023Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3024Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 3029Handle(4, TableIndex.CustomAttribute), 3030Handle(1, TableIndex.Property), 3031Handle(2, TableIndex.MethodSemantics) 3071Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 3076Handle(1, TableIndex.MethodDef) 3134Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3135Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 3136Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 3137Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 3138Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 3139Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3140Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3141Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3142Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3143Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, a new attribute 3146Handle(6, TableIndex.TypeRef), 3147Handle(7, TableIndex.TypeRef), 3148Handle(8, TableIndex.TypeRef), 3149Handle(3, TableIndex.MethodDef), 3150Handle(5, TableIndex.MemberRef), 3151Handle(6, TableIndex.MemberRef), 3152Handle(4, TableIndex.CustomAttribute), 3153Handle(1, TableIndex.StandAloneSig), 3154Handle(2, TableIndex.AssemblyRef)); 3201new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 3202new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 3203new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef))); 3228new CustomAttributeRow(Handle(1, TableIndex.Param), Handle(5, TableIndex.MemberRef))); 3231Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3232Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 3233Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 3234Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 3235Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3236Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3237Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3238Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), // New method, G 3239Row(1, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param 3240Row(2, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param 3241Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), // New param on method, G 3242Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Support for the above 3243Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3246Handle(6, TableIndex.TypeRef), 3247Handle(7, TableIndex.TypeRef), 3248Handle(2, TableIndex.MethodDef), 3249Handle(4, TableIndex.MethodDef), 3250Handle(1, TableIndex.Param), 3251Handle(2, TableIndex.Param), 3252Handle(3, TableIndex.Param), 3253Handle(5, TableIndex.MemberRef), 3254Handle(4, TableIndex.CustomAttribute), 3255Handle(2, TableIndex.StandAloneSig), 3256Handle(2, TableIndex.AssemblyRef)); 3275new CustomAttributeRow(Handle(3, TableIndex.Param), Handle(6, TableIndex.MemberRef))); 3278Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3279Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 3280Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3281Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 3282Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3283Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param, from the first delta 3284Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3287Handle(8, TableIndex.TypeRef), 3288Handle(9, TableIndex.TypeRef), 3289Handle(4, TableIndex.MethodDef), 3290Handle(3, TableIndex.Param), 3291Handle(6, TableIndex.MemberRef), 3292Handle(5, TableIndex.CustomAttribute), 3293Handle(3, TableIndex.AssemblyRef)); 3338new CustomAttributeRow(Handle(3, TableIndex.Param), Handle(1, TableIndex.MethodDef)), 3339new CustomAttributeRow(Handle(4, TableIndex.Param), Handle(1, TableIndex.MethodDef))); 3342Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3343Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 3344Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 3345Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 3346Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 3347Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3348Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3349Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Updating existing parameter defs 3350Row(4, TableIndex.Param, EditAndContinueOperation.Default), 3351Row(5, TableIndex.Param, EditAndContinueOperation.Default), 3352Row(6, TableIndex.Param, EditAndContinueOperation.Default), 3353Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Adding new custom attribute rows 3354Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3357Handle(10, TableIndex.TypeRef), 3358Handle(11, TableIndex.TypeRef), 3359Handle(12, TableIndex.TypeRef), 3360Handle(13, TableIndex.TypeRef), 3361Handle(3, TableIndex.MethodDef), 3362Handle(4, TableIndex.MethodDef), 3363Handle(3, TableIndex.Param), 3364Handle(4, TableIndex.Param), 3365Handle(5, TableIndex.Param), 3366Handle(6, TableIndex.Param), 3367Handle(4, TableIndex.CustomAttribute), 3368Handle(5, TableIndex.CustomAttribute), 3369Handle(2, TableIndex.AssemblyRef)); 3411new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 3412new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 3413new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 3414new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 3415new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 3416new CustomAttributeRow(Handle(13, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 3458new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(5, TableIndex.MethodDef)), // X 3459new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(2, TableIndex.MethodDef)), // E.A 3460new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(4, TableIndex.MethodDef)), // _x 3461new CustomAttributeRow(Handle(14, TableIndex.TypeDef), Handle(1, TableIndex.MethodDef)), // E 3462new CustomAttributeRow(Handle(15, TableIndex.TypeDef), Handle(3, TableIndex.MethodDef)), // C 3463new CustomAttributeRow(Handle(16, TableIndex.TypeDef), Handle(6, TableIndex.MethodDef)), // D 3468Row(14, TableIndex.TypeDef, EditAndContinueOperation.Default), 3469Row(15, TableIndex.TypeDef, EditAndContinueOperation.Default), 3470Row(16, TableIndex.TypeDef, EditAndContinueOperation.Default), 3471Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3472Row(3, TableIndex.Field, EditAndContinueOperation.Default), 3473Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3474Row(2, TableIndex.Constant, EditAndContinueOperation.Default), 3475Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3476Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3477Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3478Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3479Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3480Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3481Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 3486Handle(14, TableIndex.TypeDef), 3487Handle(15, TableIndex.TypeDef), 3488Handle(16, TableIndex.TypeDef), 3489Handle(2, TableIndex.Field), 3490Handle(3, TableIndex.Field), 3491Handle(2, TableIndex.Constant), 3492Handle(7, TableIndex.CustomAttribute), 3493Handle(8, TableIndex.CustomAttribute), 3494Handle(9, TableIndex.CustomAttribute), 3495Handle(10, TableIndex.CustomAttribute), 3496Handle(11, TableIndex.CustomAttribute), 3497Handle(12, TableIndex.CustomAttribute), 3498Handle(1, TableIndex.Property), 3499Handle(2, TableIndex.MethodSemantics) 3539new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(11, TableIndex.MethodDef)),// X 3540new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(8, TableIndex.MethodDef)), // E.A 3541new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(10, TableIndex.MethodDef)), // _x 3542new CustomAttributeRow(Handle(14, TableIndex.TypeDef), Handle(7, TableIndex.MethodDef)), // E 3543new CustomAttributeRow(Handle(15, TableIndex.TypeDef), Handle(9, TableIndex.MethodDef)), // C 3544new CustomAttributeRow(Handle(16, TableIndex.TypeDef), Handle(12, TableIndex.MethodDef)),// D 3549Row(14, TableIndex.TypeDef, EditAndContinueOperation.Default), 3550Row(15, TableIndex.TypeDef, EditAndContinueOperation.Default), 3551Row(16, TableIndex.TypeDef, EditAndContinueOperation.Default), 3552Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3553Row(3, TableIndex.Field, EditAndContinueOperation.Default), 3554Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3555Row(3, TableIndex.Constant, EditAndContinueOperation.Default), 3556Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Same row numbers as previous gen 3557Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3558Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3559Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3560Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3561Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3562Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 3567Handle(14, TableIndex.TypeDef), 3568Handle(15, TableIndex.TypeDef), 3569Handle(16, TableIndex.TypeDef), 3570Handle(2, TableIndex.Field), 3571Handle(3, TableIndex.Field), 3572Handle(3, TableIndex.Constant), 3573Handle(7, TableIndex.CustomAttribute), 3574Handle(8, TableIndex.CustomAttribute), 3575Handle(9, TableIndex.CustomAttribute), 3576Handle(10, TableIndex.CustomAttribute), 3577Handle(11, TableIndex.CustomAttribute), 3578Handle(12, TableIndex.CustomAttribute), 3579Handle(1, TableIndex.Property), 3580Handle(3, TableIndex.MethodSemantics) 3646Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3647Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3648Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3649Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3650Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3651Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3652Row(1, TableIndex.Constant, EditAndContinueOperation.Default), 3653Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3656Handle(3, TableIndex.MethodDef), 3657Handle(1, TableIndex.Param), 3658Handle(2, TableIndex.Param), 3659Handle(1, TableIndex.Constant), 3660Handle(4, TableIndex.CustomAttribute)); 3681Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), // C.F2 3682Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3683Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3684Row(2, TableIndex.Constant, EditAndContinueOperation.Default), 3685Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3688Handle(3, TableIndex.MethodDef), 3689Handle(1, TableIndex.Param), 3690Handle(2, TableIndex.Param), 3691Handle(2, TableIndex.Constant), 3692Handle(4, TableIndex.CustomAttribute)); 3830Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3831Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 3832Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 3833Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 3834Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 3835Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3836Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 3837Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 3838Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 3839Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 3840Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3841Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3842Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3843Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3844Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3845Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3846Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 3847Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3848Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 3849Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3850Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3851Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3852Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3853Row(7, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3854Row(3, TableIndex.Param, EditAndContinueOperation.Default), 3855Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3856Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3857Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3858Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3859Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3860Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3861Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3888Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3889Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 3890Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 3891Row(9, TableIndex.MemberRef, EditAndContinueOperation.Default), 3892Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 3893Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 3894Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 3895Row(14, TableIndex.TypeRef, EditAndContinueOperation.Default), 3896Row(15, TableIndex.TypeRef, EditAndContinueOperation.Default), 3897Row(16, TableIndex.TypeRef, EditAndContinueOperation.Default), 3898Row(17, TableIndex.TypeRef, EditAndContinueOperation.Default), 3899Row(18, TableIndex.TypeRef, EditAndContinueOperation.Default), 3900Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), // NullableAttribute 3901Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), // NullableContextAttribute 3902Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3903Row(1, TableIndex.Field, EditAndContinueOperation.Default), 3904Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3905Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3906Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 3907Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3908Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 3909Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3910Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 3911Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3912Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 3913Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3914Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 3915Row(3, TableIndex.Param, EditAndContinueOperation.Default), 3916Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3917Row(4, TableIndex.Param, EditAndContinueOperation.Default), 3918Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3919Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3920Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3921Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3922Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3923Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3924Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3925Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3928Handle(11, TableIndex.TypeRef), 3929Handle(12, TableIndex.TypeRef), 3930Handle(13, TableIndex.TypeRef), 3931Handle(14, TableIndex.TypeRef), 3932Handle(15, TableIndex.TypeRef), 3933Handle(16, TableIndex.TypeRef), 3934Handle(17, TableIndex.TypeRef), 3935Handle(18, TableIndex.TypeRef), 3936Handle(6, TableIndex.TypeDef), 3937Handle(7, TableIndex.TypeDef), 3938Handle(1, TableIndex.Field), 3939Handle(2, TableIndex.Field), 3940Handle(7, TableIndex.MethodDef), 3941Handle(8, TableIndex.MethodDef), 3942Handle(9, TableIndex.MethodDef), 3943Handle(10, TableIndex.MethodDef), 3944Handle(11, TableIndex.MethodDef), 3945Handle(3, TableIndex.Param), 3946Handle(4, TableIndex.Param), 3947Handle(7, TableIndex.MemberRef), 3948Handle(8, TableIndex.MemberRef), 3949Handle(9, TableIndex.MemberRef), 3950Handle(10, TableIndex.CustomAttribute), 3951Handle(11, TableIndex.CustomAttribute), 3952Handle(12, TableIndex.CustomAttribute), 3953Handle(13, TableIndex.CustomAttribute), 3954Handle(14, TableIndex.CustomAttribute), 3955Handle(15, TableIndex.CustomAttribute), 3956Handle(16, TableIndex.CustomAttribute), 3957Handle(17, TableIndex.CustomAttribute), 3958Handle(3, TableIndex.AssemblyRef)); 3982Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3983Row(19, TableIndex.TypeRef, EditAndContinueOperation.Default), 3984Row(20, TableIndex.TypeRef, EditAndContinueOperation.Default), 3985Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3986Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 3987Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3988Row(5, TableIndex.Param, EditAndContinueOperation.Default), 3989Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3990Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4041Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 4042Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 4043Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 4044Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4045Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4046Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 4049Handle(6, TableIndex.TypeRef), 4050Handle(2, TableIndex.Field), 4051Handle(1, TableIndex.MethodDef), 4052Handle(5, TableIndex.MemberRef), 4053Handle(2, TableIndex.AssemblyRef)); 4095Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 4096Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 4097Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 4098Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4099Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 4102Handle(7, TableIndex.TypeRef), 4103Handle(8, TableIndex.TypeRef), 4104Handle(1, TableIndex.MethodDef), 4105Handle(2, TableIndex.StandAloneSig), 4106Handle(2, TableIndex.AssemblyRef)); 4169Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4170Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 4171Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4172Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4173Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 4174Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4175Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 4178Handle(2, TableIndex.MethodDef), 4179Handle(1, TableIndex.StandAloneSig), 4180Handle(1, TableIndex.PropertyMap), 4181Handle(1, TableIndex.Property), 4182Handle(1, TableIndex.MethodSemantics)); 4208Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4209Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4210Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4211Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 4212Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4213Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4214Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 4215Row(2, TableIndex.Property, EditAndContinueOperation.Default), 4216Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 4217Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4218Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4219Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4220Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4221Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4222Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4223Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 4226Handle(1, TableIndex.Field), 4227Handle(3, TableIndex.MethodDef), 4228Handle(4, TableIndex.MethodDef), 4229Handle(1, TableIndex.Param), 4230Handle(4, TableIndex.CustomAttribute), 4231Handle(5, TableIndex.CustomAttribute), 4232Handle(6, TableIndex.CustomAttribute), 4233Handle(7, TableIndex.CustomAttribute), 4234Handle(2, TableIndex.Property), 4235Handle(2, TableIndex.MethodSemantics), 4236Handle(3, TableIndex.MethodSemantics)); 4277Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4278Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4279Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4280Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4281Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4282Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4283Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4284Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4289Handle(3, TableIndex.TypeDef), 4290Handle(2, TableIndex.Field), 4291Handle(1, TableIndex.MethodDef), 4292Handle(2, TableIndex.MethodDef), 4293Handle(4, TableIndex.MethodDef), 4294Handle(8, TableIndex.CustomAttribute) 4339Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4340Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4341Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4342Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4343Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4344Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4345Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4346Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4350Handle(1, TableIndex.MethodDef), 4351Handle(2, TableIndex.MethodDef), 4352Handle(1, TableIndex.Param), 4353Handle(1, TableIndex.CustomAttribute), 4354Handle(7, TableIndex.CustomAttribute), 4355Handle(1, TableIndex.Property), 4356Handle(3, TableIndex.MethodSemantics), 4357Handle(4, TableIndex.MethodSemantics), 4424Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4425Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4426Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4427Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4428Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4429Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4430Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4431Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4436Handle(3, TableIndex.TypeDef), 4437Handle(1, TableIndex.Field), 4438Handle(1, TableIndex.MethodDef), 4439Handle(2, TableIndex.MethodDef), 4440Handle(4, TableIndex.MethodDef), 4441Handle(4, TableIndex.CustomAttribute) 4488Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4489Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4490Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4491Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4492Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4493Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4494Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4495Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4496Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4497Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4498Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4499Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4503Handle(2, TableIndex.Field), 4504Handle(1, TableIndex.MethodDef), 4505Handle(2, TableIndex.MethodDef), 4506Handle(1, TableIndex.Param), 4507Handle(5, TableIndex.CustomAttribute), 4508Handle(6, TableIndex.CustomAttribute), 4509Handle(7, TableIndex.CustomAttribute), 4510Handle(8, TableIndex.CustomAttribute), 4511Handle(1, TableIndex.Property), 4512Handle(3, TableIndex.MethodSemantics), 4513Handle(4, TableIndex.MethodSemantics) 4576Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4577Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4578Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4579Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4580Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4581Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4582Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4583Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4587Handle(3, TableIndex.TypeDef), 4588Handle(1, TableIndex.Field), 4589Handle(1, TableIndex.MethodDef), 4590Handle(2, TableIndex.MethodDef), 4591Handle(4, TableIndex.MethodDef), 4592Handle(4, TableIndex.CustomAttribute) 4640Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4641Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4642Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4643Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4644Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4645Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4646Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4650Handle(1, TableIndex.MethodDef), 4651Handle(2, TableIndex.MethodDef), 4652Handle(1, TableIndex.Param), 4653Handle(2, TableIndex.StandAloneSig), 4654Handle(1, TableIndex.Property), 4655Handle(3, TableIndex.MethodSemantics), 4656Handle(4, TableIndex.MethodSemantics), 4718Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4719Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4720Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4721Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4722Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4723Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4724Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4728Handle(3, TableIndex.TypeDef), 4729Handle(1, TableIndex.Field), 4730Handle(2, TableIndex.MethodDef), 4731Handle(4, TableIndex.MethodDef), 4732Handle(4, TableIndex.CustomAttribute) 4779Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4780Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4781Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4782Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4783Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4784Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4785Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4789Handle(1, TableIndex.MethodDef), 4790Handle(2, TableIndex.MethodDef), 4791Handle(1, TableIndex.Param), 4792Handle(2, TableIndex.StandAloneSig), 4793Handle(1, TableIndex.Property), 4794Handle(3, TableIndex.MethodSemantics), 4795Handle(4, TableIndex.MethodSemantics), 4858Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4859Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4860Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4861Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4862Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4863Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4864Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4865Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4866Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4867Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4868Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4869Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4873Handle(1, TableIndex.Field), 4874Handle(1, TableIndex.MethodDef), 4875Handle(2, TableIndex.MethodDef), 4876Handle(1, TableIndex.Param), 4877Handle(4, TableIndex.CustomAttribute), 4878Handle(5, TableIndex.CustomAttribute), 4879Handle(6, TableIndex.CustomAttribute), 4880Handle(7, TableIndex.CustomAttribute), 4881Handle(1, TableIndex.Property), 4882Handle(3, TableIndex.MethodSemantics), 4883Handle(4, TableIndex.MethodSemantics) 4947Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4948Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4949Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4950Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4951Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4952Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4953Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4954Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4955Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4956Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4957Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4961Handle(1, TableIndex.Field), 4962Handle(1, TableIndex.MethodDef), 4963Handle(2, TableIndex.MethodDef), 4964Handle(1, TableIndex.Param), 4965Handle(4, TableIndex.CustomAttribute), 4966Handle(5, TableIndex.CustomAttribute), 4967Handle(6, TableIndex.CustomAttribute), 4968Handle(1, TableIndex.Property), 4969Handle(3, TableIndex.MethodSemantics), 4970Handle(4, TableIndex.MethodSemantics) 5034Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5035Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5036Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5037Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5038Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5039Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5040Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5041Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5045Handle(1, TableIndex.MethodDef), 5046Handle(2, TableIndex.MethodDef), 5047Handle(1, TableIndex.Param), 5048Handle(1, TableIndex.CustomAttribute), 5049Handle(7, TableIndex.CustomAttribute), 5050Handle(1, TableIndex.Property), 5051Handle(3, TableIndex.MethodSemantics), 5052Handle(4, TableIndex.MethodSemantics) 5121Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 5122Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5123Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5124Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5125Row(3, TableIndex.Field, EditAndContinueOperation.Default), 5126Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5127Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5128Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5129Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5130Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5131Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5132Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5133Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 5134Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 5135Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5136Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5137Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5138Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5139Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5140Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5141Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5142Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5143Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5144Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5148Handle(3, TableIndex.TypeDef), 5149Handle(2, TableIndex.Field), 5150Handle(3, TableIndex.Field), 5151Handle(1, TableIndex.MethodDef), 5152Handle(2, TableIndex.MethodDef), 5153Handle(4, TableIndex.MethodDef), 5154Handle(5, TableIndex.MethodDef), 5155Handle(6, TableIndex.MethodDef), 5156Handle(2, TableIndex.Param), 5157Handle(8, TableIndex.CustomAttribute), 5158Handle(9, TableIndex.CustomAttribute), 5159Handle(10, TableIndex.CustomAttribute), 5160Handle(11, TableIndex.CustomAttribute), 5161Handle(12, TableIndex.CustomAttribute), 5162Handle(2, TableIndex.Property), 5163Handle(3, TableIndex.MethodSemantics), 5164Handle(4, TableIndex.MethodSemantics) 5233Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5234Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5235Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5236Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5237Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5238Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5239Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5240Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5241Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5242Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5246Handle(1, TableIndex.MethodDef), 5247Handle(2, TableIndex.MethodDef), 5248Handle(4, TableIndex.MethodDef), 5249Handle(5, TableIndex.MethodDef), 5250Handle(1, TableIndex.Param), 5251Handle(1, TableIndex.CustomAttribute), 5252Handle(7, TableIndex.CustomAttribute), 5253Handle(1, TableIndex.Property), 5254Handle(5, TableIndex.MethodSemantics), 5255Handle(6, TableIndex.MethodSemantics), 5330Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 5331Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5332Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5333Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5334Row(3, TableIndex.Field, EditAndContinueOperation.Default), 5335Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5336Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5337Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5338Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5339Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5340Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5341Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5342Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 5343Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 5344Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5345Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5346Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5347Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5348Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5349Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5350Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5351Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5352Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5353Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5357Handle(3, TableIndex.TypeDef), 5358Handle(2, TableIndex.Field), 5359Handle(3, TableIndex.Field), 5360Handle(1, TableIndex.MethodDef), 5361Handle(2, TableIndex.MethodDef), 5362Handle(4, TableIndex.MethodDef), 5363Handle(5, TableIndex.MethodDef), 5364Handle(6, TableIndex.MethodDef), 5365Handle(2, TableIndex.Param), 5366Handle(8, TableIndex.CustomAttribute), 5367Handle(9, TableIndex.CustomAttribute), 5368Handle(10, TableIndex.CustomAttribute), 5369Handle(11, TableIndex.CustomAttribute), 5370Handle(12, TableIndex.CustomAttribute), 5371Handle(2, TableIndex.Property), 5372Handle(3, TableIndex.MethodSemantics), 5373Handle(4, TableIndex.MethodSemantics) 5442Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5443Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5444Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5445Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5446Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5447Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5448Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5449Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5450Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5451Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5455Handle(1, TableIndex.MethodDef), 5456Handle(2, TableIndex.MethodDef), 5457Handle(4, TableIndex.MethodDef), 5458Handle(5, TableIndex.MethodDef), 5459Handle(1, TableIndex.Param), 5460Handle(1, TableIndex.CustomAttribute), 5461Handle(7, TableIndex.CustomAttribute), 5462Handle(1, TableIndex.Property), 5463Handle(5, TableIndex.MethodSemantics), 5464Handle(6, TableIndex.MethodSemantics) 5537Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 5538Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5539Row(1, TableIndex.Field, EditAndContinueOperation.Default), 5540Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5541Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5542Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5543Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5544Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 5548Handle(3, TableIndex.TypeDef), 5549Handle(1, TableIndex.Field), 5550Handle(1, TableIndex.MethodDef), 5551Handle(2, TableIndex.MethodDef), 5552Handle(4, TableIndex.MethodDef), 5553Handle(5, TableIndex.CustomAttribute) 5622Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5623Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 5624Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5625Row(1, TableIndex.Field, EditAndContinueOperation.Default), 5626Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5627Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5628Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5629Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5630Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5631Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 5632Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5633Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5634Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5635Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5636Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5640Handle(3, TableIndex.TypeDef), 5641Handle(1, TableIndex.Field), 5642Handle(1, TableIndex.MethodDef), 5643Handle(3, TableIndex.MethodDef), 5644Handle(4, TableIndex.MethodDef), 5645Handle(2, TableIndex.Param), 5646Handle(5, TableIndex.CustomAttribute), 5647Handle(2, TableIndex.StandAloneSig), 5648Handle(2, TableIndex.Property), 5649Handle(2, TableIndex.MethodSemantics) 5710Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5711Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5712Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5713Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5714Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5715Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5719Handle(1, TableIndex.MethodDef), 5720Handle(3, TableIndex.MethodDef), 5721Handle(1, TableIndex.Param), 5722Handle(3, TableIndex.StandAloneSig), 5723Handle(1, TableIndex.Property), 5724Handle(3, TableIndex.MethodSemantics), 5773Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5774Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5775Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5776Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5777Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5781Handle(3, TableIndex.MethodDef), 5782Handle(2, TableIndex.Param), 5783Handle(4, TableIndex.StandAloneSig), 5784Handle(2, TableIndex.Property), 5785Handle(4, TableIndex.MethodSemantics) 5841Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5842Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5843Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5844Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5845Row(3, TableIndex.Param, EditAndContinueOperation.Default), 5850Handle(1, TableIndex.MethodDef), 5851Handle(2, TableIndex.MethodDef), 5852Handle(1, TableIndex.Param), 5853Handle(2, TableIndex.Param), 5854Handle(3, TableIndex.Param), 5925Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5926Row(1, TableIndex.EventMap, EditAndContinueOperation.Default), 5927Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 5928Row(1, TableIndex.Event, EditAndContinueOperation.Default), 5929Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5930Row(1, TableIndex.Field, EditAndContinueOperation.Default), 5931Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5932Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5933Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5934Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5935Row(2, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5936Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5937Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5938Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5939Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5940Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5941Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5942Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5943Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5944Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 5947Handle(1, TableIndex.Field), 5948Handle(2, TableIndex.MethodDef), 5949Handle(3, TableIndex.MethodDef), 5950Handle(1, TableIndex.Param), 5951Handle(2, TableIndex.Param), 5952Handle(4, TableIndex.CustomAttribute), 5953Handle(5, TableIndex.CustomAttribute), 5954Handle(6, TableIndex.CustomAttribute), 5955Handle(7, TableIndex.CustomAttribute), 5956Handle(1, TableIndex.StandAloneSig), 5957Handle(1, TableIndex.EventMap), 5958Handle(1, TableIndex.Event), 5959Handle(1, TableIndex.MethodSemantics), 5960Handle(2, TableIndex.MethodSemantics)); 5980Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5981Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 5982Row(2, TableIndex.Event, EditAndContinueOperation.Default), 5983Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5984Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5985Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5986Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5987Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5988Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5989Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5990Row(3, TableIndex.Param, EditAndContinueOperation.Default), 5991Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5992Row(4, TableIndex.Param, EditAndContinueOperation.Default), 5993Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5994Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5995Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5996Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5997Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5998Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 6001Handle(2, TableIndex.Field), 6002Handle(4, TableIndex.MethodDef), 6003Handle(5, TableIndex.MethodDef), 6004Handle(3, TableIndex.Param), 6005Handle(4, TableIndex.Param), 6006Handle(8, TableIndex.CustomAttribute), 6007Handle(9, TableIndex.CustomAttribute), 6008Handle(10, TableIndex.CustomAttribute), 6009Handle(11, TableIndex.CustomAttribute), 6010Handle(2, TableIndex.StandAloneSig), 6011Handle(2, TableIndex.Event), 6012Handle(3, TableIndex.MethodSemantics), 6013Handle(4, TableIndex.MethodSemantics)); 6054Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 6055Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6056Row(2, TableIndex.Field, EditAndContinueOperation.Default), 6057Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6058Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6059Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6060Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6061Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 6065Handle(3, TableIndex.TypeDef), 6066Handle(2, TableIndex.Field), 6067Handle(1, TableIndex.MethodDef), 6068Handle(2, TableIndex.MethodDef), 6069Handle(4, TableIndex.MethodDef), 6070Handle(8, TableIndex.CustomAttribute) 6140Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6141Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 6142Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 6143Row(2, TableIndex.Event, EditAndContinueOperation.Default), 6144Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6145Row(2, TableIndex.Field, EditAndContinueOperation.Default), 6146Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6147Row(3, TableIndex.Field, EditAndContinueOperation.Default), 6148Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6149Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6150Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6151Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6152Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6153Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6154Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6155Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 6156Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6157Row(3, TableIndex.Param, EditAndContinueOperation.Default), 6158Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6159Row(4, TableIndex.Param, EditAndContinueOperation.Default), 6160Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6161Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6162Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6163Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6164Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6165Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6166Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 6170Handle(3, TableIndex.TypeDef), 6171Handle(2, TableIndex.Field), 6172Handle(3, TableIndex.Field), 6173Handle(1, TableIndex.MethodDef), 6174Handle(2, TableIndex.MethodDef), 6175Handle(4, TableIndex.MethodDef), 6176Handle(5, TableIndex.MethodDef), 6177Handle(6, TableIndex.MethodDef), 6178Handle(3, TableIndex.Param), 6179Handle(4, TableIndex.Param), 6180Handle(8, TableIndex.CustomAttribute), 6181Handle(9, TableIndex.CustomAttribute), 6182Handle(10, TableIndex.CustomAttribute), 6183Handle(11, TableIndex.CustomAttribute), 6184Handle(12, TableIndex.CustomAttribute), 6185Handle(2, TableIndex.StandAloneSig), 6186Handle(2, TableIndex.Event), 6187Handle(3, TableIndex.MethodSemantics), 6188Handle(4, TableIndex.MethodSemantics) 6289Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6290Row(1, TableIndex.Event, EditAndContinueOperation.Default), 6291Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6292Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6293Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6294Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6295Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6296Row(2, TableIndex.Param, EditAndContinueOperation.Default), 6297Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6298Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6299Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6300Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6304Handle(1, TableIndex.MethodDef), 6305Handle(2, TableIndex.MethodDef), 6306Handle(4, TableIndex.MethodDef), 6307Handle(5, TableIndex.MethodDef), 6308Handle(1, TableIndex.Param), 6309Handle(2, TableIndex.Param), 6310Handle(1, TableIndex.CustomAttribute), 6311Handle(7, TableIndex.CustomAttribute), 6312Handle(3, TableIndex.StandAloneSig), 6313Handle(1, TableIndex.Event), 6314Handle(5, TableIndex.MethodSemantics), 6315Handle(6, TableIndex.MethodSemantics), 6504Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 6505Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 6508Handle(2, TableIndex.TypeDef), 6509Handle(4, TableIndex.CustomAttribute)); 6525Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 6526Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6527Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 6530Handle(2, TableIndex.TypeDef), 6531Handle(4, TableIndex.CustomAttribute), 6532Handle(5, TableIndex.CustomAttribute)); 6643Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.Default), // adding a type def 6644Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6645Row(baseFieldCount + generation, TableIndex.Field, EditAndContinueOperation.Default), 6646Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6647Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6648Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6649Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6650Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6651Row(baseParameterCount + generation * 2 - 1, TableIndex.Param, EditAndContinueOperation.Default), 6652Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6653Row(baseParameterCount + generation * 2, TableIndex.Param, EditAndContinueOperation.Default), 6654hasAttribute ? Row(baseAttributeCount + generation, TableIndex.CustomAttribute, EditAndContinueOperation.Default) : default); // adding a new attribute row for attribute on C#* definition 6657Handle(baseTypeCount + generation, TableIndex.TypeDef), 6658Handle(baseFieldCount + generation, TableIndex.Field), 6659Handle(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef), 6660Handle(baseMethodCount + generation * 2, TableIndex.MethodDef), 6661Handle(baseParameterCount + generation * 2 - 1, TableIndex.Param), 6662Handle(baseParameterCount + generation * 2, TableIndex.Param), 6663hasAttribute ? Handle(baseAttributeCount + generation, TableIndex.CustomAttribute) : default); 6723Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 6724Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 6725Row(5, TableIndex.Param, EditAndContinueOperation.Default), 6726Row(6, TableIndex.Param, EditAndContinueOperation.Default), 6727Row(hasAttribute ? 9 : 8, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 6730Handle(5, TableIndex.TypeDef), 6731Handle(7, TableIndex.MethodDef), 6732Handle(5, TableIndex.Param), 6733Handle(6, TableIndex.Param), 6734Handle(hasAttribute ? 9 : 8, TableIndex.CustomAttribute)); 6802Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 6803Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6804Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6805Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 6806Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6807Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 6808Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6809Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 6810Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 6814Handle(5, TableIndex.TypeDef), 6815Handle(5, TableIndex.MethodDef), 6816Handle(7, TableIndex.MethodDef), 6817Handle(8, TableIndex.MethodDef), 6818Handle(9, TableIndex.MethodDef), 6819Handle(8, TableIndex.CustomAttribute) 6860new CustomAttributeRow(Handle(1, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 6861new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 6862new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 6863new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 6864new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 6865new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 6866new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 6885new CustomAttributeRow(Handle(1, TableIndex.Event), Handle(10, TableIndex.MemberRef))); 6888Row(1, TableIndex.Event, EditAndContinueOperation.Default), 6889Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6890Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6891Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 6894Handle(8, TableIndex.CustomAttribute), 6895Handle(1, TableIndex.Event), 6896Handle(3, TableIndex.MethodSemantics), 6897Handle(4, TableIndex.MethodSemantics)); 7105Assert.Equal(1, reader0.GetTableRowCount(TableIndex.NestedClass)); 7125Assert.Equal(2, reader1.GetTableRowCount(TableIndex.NestedClass)); 7128Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7129Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 7130Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7131Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7132Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 7133Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 7134Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7135Row(1, TableIndex.Field, EditAndContinueOperation.Default), 7136Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7137Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7138Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7139Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7140Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7141Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7142Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7143Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 7144Row(3, TableIndex.NestedClass, EditAndContinueOperation.Default)); 7147Handle(6, TableIndex.TypeRef), 7148Handle(4, TableIndex.TypeDef), 7149Handle(5, TableIndex.TypeDef), 7150Handle(1, TableIndex.Field), 7151Handle(1, TableIndex.MethodDef), 7152Handle(4, TableIndex.MethodDef), 7153Handle(5, TableIndex.MethodDef), 7154Handle(6, TableIndex.MethodDef), 7155Handle(5, TableIndex.MemberRef), 7156Handle(2, TableIndex.StandAloneSig), 7157Handle(2, TableIndex.AssemblyRef), 7158Handle(2, TableIndex.NestedClass), 7159Handle(3, TableIndex.NestedClass)); 7208Assert.Equal(4, reader0.GetTableRowCount(TableIndex.NestedClass)); 7221Assert.Equal(4, reader1.GetTableRowCount(TableIndex.NestedClass)); 7268Assert.Equal(1, reader0.GetTableRowCount(TableIndex.NestedClass)); 7286Assert.Equal(1, reader1.GetTableRowCount(TableIndex.NestedClass)); 7289Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7290Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 7291Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 7292Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 7293Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 7294Row(1, TableIndex.MethodSpec, EditAndContinueOperation.Default), 7295Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7296Row(1, TableIndex.TypeSpec, EditAndContinueOperation.Default), 7297Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 7298Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 7299Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7300Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 7301Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7302Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7303Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7304Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7305Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7306Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 7307Row(2, TableIndex.GenericParam, EditAndContinueOperation.Default), 7308Row(3, TableIndex.GenericParam, EditAndContinueOperation.Default), 7309Row(4, TableIndex.GenericParam, EditAndContinueOperation.Default), 7310Row(1, TableIndex.GenericParamConstraint, EditAndContinueOperation.Default)); 7313Handle(6, TableIndex.TypeRef), 7314Handle(4, TableIndex.TypeDef), 7315Handle(1, TableIndex.MethodDef), 7316Handle(4, TableIndex.MethodDef), 7317Handle(5, TableIndex.MethodDef), 7318Handle(5, TableIndex.MemberRef), 7319Handle(6, TableIndex.MemberRef), 7320Handle(7, TableIndex.MemberRef), 7321Handle(8, TableIndex.MemberRef), 7322Handle(2, TableIndex.StandAloneSig), 7323Handle(1, TableIndex.TypeSpec), 7324Handle(2, TableIndex.TypeSpec), 7325Handle(3, TableIndex.TypeSpec), 7326Handle(2, TableIndex.AssemblyRef), 7327Handle(2, TableIndex.NestedClass), 7328Handle(2, TableIndex.GenericParam), 7329Handle(3, TableIndex.GenericParam), 7330Handle(4, TableIndex.GenericParam), 7331Handle(1, TableIndex.MethodSpec), 7332Handle(1, TableIndex.GenericParamConstraint)); 7457Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7458Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7459Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 7462Handle(6, TableIndex.TypeRef), 7463Handle(2, TableIndex.MethodDef), 7464Handle(2, TableIndex.AssemblyRef)); 7523Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7524Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7525Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7526Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7527Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default)); 7530Handle(6, TableIndex.TypeRef), 7531Handle(6, TableIndex.MethodDef), 7532Handle(2, TableIndex.MethodImpl), 7533Handle(2, TableIndex.AssemblyRef)); 7548Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7549Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 7550Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default)); 7553Handle(7, TableIndex.TypeRef), 7554Handle(6, TableIndex.MethodDef), 7555Handle(3, TableIndex.AssemblyRef)); 7599Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7600Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 7601Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7602Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 7605Handle(6, TableIndex.TypeRef), 7606Handle(2, TableIndex.MethodDef), 7607Handle(5, TableIndex.MemberRef), 7608Handle(2, TableIndex.AssemblyRef)); 7722Assert.Equal(1, reader1.GetTableRowCount(TableIndex.NestedClass)); 7749Assert.Equal(0, reader2.GetTableRowCount(TableIndex.NestedClass)); 7752Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7753Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 7754Row(1, TableIndex.Field, EditAndContinueOperation.Default), 7755Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7756Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7757Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7758Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7759Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 7760Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 7761Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7762Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 7763Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 7764Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7765Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 7766Row(3, TableIndex.Param, EditAndContinueOperation.Default), 7767Row(4, TableIndex.Param, EditAndContinueOperation.Default), 7768Row(5, TableIndex.Param, EditAndContinueOperation.Default), 7769Row(6, TableIndex.Param, EditAndContinueOperation.Default), 7770Row(7, TableIndex.Param, EditAndContinueOperation.Default), 7771Row(8, TableIndex.Param, EditAndContinueOperation.Default)); 7848new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(2, TableIndex.MethodDef)), 7849new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(1, TableIndex.MethodDef)), 7850new CustomAttributeRow(Handle(1, TableIndex.Event), Handle(2, TableIndex.MethodDef)), 7851new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 7852new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 7853new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 7854new CustomAttributeRow(Handle(1, TableIndex.GenericParam), Handle(2, TableIndex.MethodDef)), 7855new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 7856new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 7857new CustomAttributeRow(Handle(3, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), 7858new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 7859new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 7882Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7883Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7884Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 7885Row(2, TableIndex.Event, EditAndContinueOperation.Default), 7886Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7887Row(3, TableIndex.Field, EditAndContinueOperation.Default), 7888Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7889Row(4, TableIndex.Field, EditAndContinueOperation.Default), 7890Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7891Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7892Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7893Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 7894Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7895Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 7896Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7897Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 7898Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 7899Row(2, TableIndex.Property, EditAndContinueOperation.Default), 7900Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7901Row(8, TableIndex.Param, EditAndContinueOperation.Default), 7902Row(15, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7903Row(9, TableIndex.Param, EditAndContinueOperation.Default), 7904Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7905Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7906Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7907Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7908Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7909Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7910Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7911Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7912Row(20, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7913Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 7914Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 7915Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 7916Row(2, TableIndex.GenericParam, EditAndContinueOperation.Default)); 7919Handle(3, TableIndex.Field), 7920Handle(4, TableIndex.Field), 7921Handle(12, TableIndex.MethodDef), 7922Handle(13, TableIndex.MethodDef), 7923Handle(14, TableIndex.MethodDef), 7924Handle(15, TableIndex.MethodDef), 7925Handle(8, TableIndex.Param), 7926Handle(9, TableIndex.Param), 7927Handle(7, TableIndex.CustomAttribute), 7928Handle(13, TableIndex.CustomAttribute), 7929Handle(14, TableIndex.CustomAttribute), 7930Handle(15, TableIndex.CustomAttribute), 7931Handle(16, TableIndex.CustomAttribute), 7932Handle(17, TableIndex.CustomAttribute), 7933Handle(18, TableIndex.CustomAttribute), 7934Handle(19, TableIndex.CustomAttribute), 7935Handle(20, TableIndex.CustomAttribute), 7936Handle(3, TableIndex.StandAloneSig), 7937Handle(4, TableIndex.StandAloneSig), 7938Handle(2, TableIndex.Event), 7939Handle(2, TableIndex.Property), 7940Handle(4, TableIndex.MethodSemantics), 7941Handle(5, TableIndex.MethodSemantics), 7942Handle(6, TableIndex.MethodSemantics), 7943Handle(2, TableIndex.GenericParam)); 7946new CustomAttributeRow(Handle(1, TableIndex.GenericParam), Handle(1, TableIndex.MethodDef)), 7947new CustomAttributeRow(Handle(2, TableIndex.Property), Handle(2, TableIndex.MethodDef)), 7948new CustomAttributeRow(Handle(2, TableIndex.Event), Handle(1, TableIndex.MethodDef)), 7949new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(1, TableIndex.MethodDef)), 7950new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(11, TableIndex.MemberRef)), 7951new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(12, TableIndex.MemberRef)), 7952new CustomAttributeRow(Handle(12, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), 7953new CustomAttributeRow(Handle(14, TableIndex.MethodDef), Handle(11, TableIndex.MemberRef)), 7954new CustomAttributeRow(Handle(15, TableIndex.MethodDef), Handle(11, TableIndex.MemberRef))); 8003Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8004Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 8005Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8006Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.M 8008Handle(7, TableIndex.TypeRef), 8009Handle(2, TableIndex.MethodDef), 8010Handle(2, TableIndex.AssemblyRef)); 8123Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8124Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 8125Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 8126Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8127Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 8130Handle(12, TableIndex.TypeRef), 8131Handle(13, TableIndex.TypeRef), 8132Handle(1, TableIndex.MethodDef), 8133Handle(2, TableIndex.StandAloneSig), 8134Handle(2, TableIndex.AssemblyRef)); 8225Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8226Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 8227Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 8228Row(1, TableIndex.Param, EditAndContinueOperation.Default), 8229Row(2, TableIndex.ImplMap, EditAndContinueOperation.Default)); 8232Handle(3, TableIndex.MethodDef), 8233Handle(1, TableIndex.Param), 8234Handle(2, TableIndex.ImplMap)); 8277Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8278Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 8279Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 8280Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 8281Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8282Row(3, TableIndex.Field, EditAndContinueOperation.Default), 8283Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8284Row(4, TableIndex.Field, EditAndContinueOperation.Default), 8285Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8286Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 8287Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 8288Row(3, TableIndex.FieldLayout, EditAndContinueOperation.Default), 8289Row(4, TableIndex.FieldLayout, EditAndContinueOperation.Default)); 8291Handle(6, TableIndex.TypeRef), 8292Handle(3, TableIndex.TypeDef), 8293Handle(3, TableIndex.Field), 8294Handle(4, TableIndex.Field), 8295Handle(2, TableIndex.MethodDef), 8296Handle(5, TableIndex.MemberRef), 8297Handle(2, TableIndex.ClassLayout), 8298Handle(3, TableIndex.FieldLayout), 8299Handle(4, TableIndex.FieldLayout), 8300Handle(2, TableIndex.AssemblyRef)); 8909Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8910Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 8911Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8912Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 8915Handle(6, TableIndex.TypeRef), 8916Handle(2, TableIndex.MethodDef), 8917Handle(2, TableIndex.AssemblyRef)); 12556Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 12557Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 12558Row(1, TableIndex.Field, EditAndContinueOperation.Default), 12559Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 12560Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 12561Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 12562Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 12567Handle(3, TableIndex.TypeDef), 12568Handle(1, TableIndex.Field), 12569Handle(1, TableIndex.MethodDef), 12570Handle(3, TableIndex.MethodDef), 12571Handle(4, TableIndex.CustomAttribute) 12652Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 12653Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 12654Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 12655Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 12658Handle(7, TableIndex.TypeRef), 12659Handle(2, TableIndex.MethodDef), 12660Handle(2, TableIndex.StandAloneSig), 12661Handle(2, TableIndex.AssemblyRef)); 16135Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 16136Row(21, TableIndex.TypeRef, EditAndContinueOperation.Default), 16137Row(22, TableIndex.TypeRef, EditAndContinueOperation.Default), 16138Row(23, TableIndex.TypeRef, EditAndContinueOperation.Default), 16139Row(4, TableIndex.TypeSpec, EditAndContinueOperation.Default), 16140Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 16141Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 16142Row(3, TableIndex.Param, EditAndContinueOperation.Default), 16143Row(23, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 16146Handle(21, TableIndex.TypeRef), 16147Handle(22, TableIndex.TypeRef), 16148Handle(23, TableIndex.TypeRef), 16149Handle(10, TableIndex.MethodDef), 16150Handle(3, TableIndex.Param), 16151Handle(23, TableIndex.CustomAttribute), 16152Handle(3, TableIndex.StandAloneSig), 16153Handle(4, TableIndex.TypeSpec), 16154Handle(3, TableIndex.AssemblyRef)); 16253Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 16254Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16255Row(3, TableIndex.Field, EditAndContinueOperation.Default), 16256Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16257Row(4, TableIndex.Field, EditAndContinueOperation.Default), 16258Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 16259Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16260Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 16261Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16262Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 16263Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16264Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 16265Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16266Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 16267Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16268Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 16269Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 16270Row(2, TableIndex.Property, EditAndContinueOperation.Default), 16271Row(16, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16272Row(9, TableIndex.Param, EditAndContinueOperation.Default), 16273Row(18, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16274Row(10, TableIndex.Param, EditAndContinueOperation.Default), 16275Row(19, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16276Row(11, TableIndex.Param, EditAndContinueOperation.Default), 16277Row(30, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16278Row(31, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16279Row(32, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16280Row(33, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16281Row(34, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16282Row(35, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16283Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 16284Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 16341Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16342Row(5, TableIndex.Field, EditAndContinueOperation.Default), 16343Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16344Row(21, TableIndex.MethodDef, EditAndContinueOperation.Default), 16345Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16346Row(22, TableIndex.MethodDef, EditAndContinueOperation.Default), 16347Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16348Row(23, TableIndex.MethodDef, EditAndContinueOperation.Default), 16349Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16350Row(24, TableIndex.MethodDef, EditAndContinueOperation.Default), 16351Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 16352Row(4, TableIndex.Property, EditAndContinueOperation.Default), 16353Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16354Row(15, TableIndex.Param, EditAndContinueOperation.Default), 16355Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16356Row(16, TableIndex.Param, EditAndContinueOperation.Default), 16357Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16358Row(17, TableIndex.Param, EditAndContinueOperation.Default), 16359Row(23, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16360Row(18, TableIndex.Param, EditAndContinueOperation.Default), 16361Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16362Row(19, TableIndex.Param, EditAndContinueOperation.Default), 16363Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16364Row(20, TableIndex.Param, EditAndContinueOperation.Default), 16365Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16366Row(21, TableIndex.Param, EditAndContinueOperation.Default), 16367Row(39, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16368Row(40, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16369Row(41, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16370Row(42, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16371Row(43, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16372Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 16373Row(7, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 16480Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16481Row(4, TableIndex.Field, EditAndContinueOperation.Default), 16482Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16483Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 16484Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16485Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 16486Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 16487Row(3, TableIndex.Property, EditAndContinueOperation.Default), 16488Row(20, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16489Row(12, TableIndex.Param, EditAndContinueOperation.Default), 16490Row(35, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16491Row(36, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16492Row(37, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16493Row(38, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16494Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 16495Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 16569Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 16570Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 16571Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 16572Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 16573Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 16574Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 16575Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), // Synthesized Main method 16576Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 16579Handle(8, TableIndex.TypeRef), 16580Handle(9, TableIndex.TypeRef), 16581Handle(10, TableIndex.TypeRef), 16582Handle(1, TableIndex.MethodDef), 16583Handle(1, TableIndex.Param), 16584Handle(7, TableIndex.MemberRef), 16585Handle(8, TableIndex.MemberRef), 16586Handle(2, TableIndex.AssemblyRef)); 17125Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 17126Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17127Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17128Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17129Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17130Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 17131Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17136Handle(4, TableIndex.TypeDef), 17137Handle(1, TableIndex.Field), 17138Handle(1, TableIndex.MethodDef), 17139Handle(4, TableIndex.MethodDef), 17140Handle(4, TableIndex.CustomAttribute) 17206Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17207Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default) 17211Handle(3, TableIndex.MethodDef), 17241Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 17242Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17243Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17244Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17245Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17246Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 17247Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17252Handle(3, TableIndex.TypeDef), 17253Handle(1, TableIndex.Field), 17254Handle(3, TableIndex.MethodDef), 17255Handle(4, TableIndex.MethodDef), 17256Handle(4, TableIndex.CustomAttribute) 17320Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 17321Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17322Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17323Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17324Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17325Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17326Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17330Handle(3, TableIndex.TypeDef), 17331Handle(1, TableIndex.Field), 17332Handle(1, TableIndex.MethodDef), 17333Handle(3, TableIndex.MethodDef), 17334Handle(4, TableIndex.CustomAttribute) 17379Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 17383Handle(1, TableIndex.MethodDef), 17443Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 17444Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17445Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17446Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17447Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17448Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 17449Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17454Handle(5, TableIndex.TypeDef), 17455Handle(1, TableIndex.Field), 17456Handle(3, TableIndex.MethodDef), 17457Handle(5, TableIndex.MethodDef), 17458Handle(7, TableIndex.CustomAttribute) 17463new CustomAttributeRow(Handle(5, TableIndex.TypeDef), Handle(6, TableIndex.MemberRef)) 17514Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17515Row(1, TableIndex.Param, EditAndContinueOperation.Default), 17516Row(2, TableIndex.Param, EditAndContinueOperation.Default), 17517Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 17518Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 17519Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17523Handle(3, TableIndex.MethodDef), 17524Handle(1, TableIndex.Param), 17525Handle(2, TableIndex.Param), 17526Handle(1, TableIndex.CustomAttribute), 17527Handle(5, TableIndex.CustomAttribute), 17528Handle(6, TableIndex.CustomAttribute) 17532new CustomAttributeRow(Handle(1, TableIndex.Param), Handle(2, TableIndex.MethodDef)), 17533new CustomAttributeRow(Handle(2, TableIndex.Param), Handle(2, TableIndex.MethodDef)), 17534new CustomAttributeRow(Handle(3, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)) 17586Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 17587Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17588Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17589Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 17590Row(1, TableIndex.Param, EditAndContinueOperation.Default) 17594Handle(3, TableIndex.MethodDef), 17595Handle(1, TableIndex.Param), 17596Handle(1, TableIndex.StandAloneSig) 17632Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 17633Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17634Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17635Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17636Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17637Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 17638Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17643Handle(3, TableIndex.TypeDef), 17644Handle(1, TableIndex.Field), 17645Handle(3, TableIndex.MethodDef), 17646Handle(4, TableIndex.MethodDef), 17647Handle(4, TableIndex.CustomAttribute) 17695Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 17696Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17697Row(1, TableIndex.Param, EditAndContinueOperation.Default) 17701Handle(3, TableIndex.MethodDef), 17702Handle(1, TableIndex.Param), 17703Handle(2, TableIndex.StandAloneSig) 17769Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 17770Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17771Row(3, TableIndex.Field, EditAndContinueOperation.Default), 17772Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17773Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 17774Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17775Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 17776Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17781Handle(4, TableIndex.TypeDef), 17782Handle(3, TableIndex.Field), 17783Handle(1, TableIndex.MethodDef), 17784Handle(5, TableIndex.MethodDef), 17785Handle(6, TableIndex.MethodDef), 17786Handle(5, TableIndex.CustomAttribute) 17850Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17851Row(4, TableIndex.Field, EditAndContinueOperation.Default), 17852Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17853Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 17854Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17855Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 17860Handle(4, TableIndex.Field), 17861Handle(1, TableIndex.MethodDef), 17862Handle(4, TableIndex.MethodDef), 17863Handle(7, TableIndex.MethodDef) 17928Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17929Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 17934Handle(1, TableIndex.MethodDef), 17935Handle(7, TableIndex.MethodDef) 18029Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 18030Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18031Row(3, TableIndex.Field, EditAndContinueOperation.Default), 18032Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 18033Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 18034Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18035Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 18036Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18041Handle(4, TableIndex.TypeDef), 18042Handle(3, TableIndex.Field), 18043Handle(2, TableIndex.MethodDef), 18044Handle(5, TableIndex.MethodDef), 18045Handle(6, TableIndex.MethodDef), 18046Handle(5, TableIndex.CustomAttribute) 18206Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 18207Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18208Row(5, TableIndex.Field, EditAndContinueOperation.Default), 18209Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 18210Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 18211Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 18212Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 18213Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18214Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 18215Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18220Handle(8, TableIndex.TypeDef), 18221Handle(5, TableIndex.Field), 18222Handle(5, TableIndex.MethodDef), 18223Handle(9, TableIndex.MethodDef), 18224Handle(10, TableIndex.MethodDef), 18225Handle(11, TableIndex.MethodDef), 18226Handle(12, TableIndex.MethodDef), 18227Handle(15, TableIndex.CustomAttribute) 18369Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 18370Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default) 18375Handle(13, TableIndex.MethodDef), 18376Handle(16, TableIndex.MethodDef) 18492Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 18493Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18494Row(1, TableIndex.Field, EditAndContinueOperation.Default), 18495Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 18496Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 18497Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 18498Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18499Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 18500Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18505Handle(7, TableIndex.TypeDef), 18506Handle(1, TableIndex.Field), 18507Handle(5, TableIndex.MethodDef), 18508Handle(7, TableIndex.MethodDef), 18509Handle(8, TableIndex.MethodDef), 18510Handle(9, TableIndex.MethodDef), 18511Handle(18, TableIndex.CustomAttribute) 18674Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 18675Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 18676Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 18677Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default) 18806Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 18807Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18808Row(1, TableIndex.Field, EditAndContinueOperation.Default), 18809Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18810Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18811Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18812Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18813Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18814Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 18815Row(2, TableIndex.Param, EditAndContinueOperation.Default), 18816Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18820Handle(3, TableIndex.TypeDef), 18821Handle(1, TableIndex.Field), 18822Handle(1, TableIndex.MethodDef), 18823Handle(3, TableIndex.MethodDef), 18824Handle(4, TableIndex.MethodDef), 18825Handle(2, TableIndex.Param), 18826Handle(4, TableIndex.CustomAttribute) 18884Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18885Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18886Row(1, TableIndex.Param, EditAndContinueOperation.Default) 18891Handle(1, TableIndex.MethodDef), 18892Handle(3, TableIndex.MethodDef), 18893Handle(1, TableIndex.Param) 18957Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18958Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 18959Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18960Row(1, TableIndex.Field, EditAndContinueOperation.Default), 18961Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18962Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18963Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18964Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18965Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18966Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 18967Row(2, TableIndex.Param, EditAndContinueOperation.Default), 18968Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18973Handle(3, TableIndex.TypeDef), 18974Handle(1, TableIndex.Field), 18975Handle(1, TableIndex.MethodDef), 18976Handle(3, TableIndex.MethodDef), 18977Handle(4, TableIndex.MethodDef), 18978Handle(2, TableIndex.Param), 18979Handle(4, TableIndex.CustomAttribute), 18980Handle(2, TableIndex.StandAloneSig) 19039Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19040Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19041Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 19042Row(1, TableIndex.Param, EditAndContinueOperation.Default), 19046Handle(1, TableIndex.MethodDef), 19047Handle(3, TableIndex.MethodDef), 19048Handle(1, TableIndex.Param), 19049Handle(3, TableIndex.StandAloneSig) 19115Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 19116Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19117Row(1, TableIndex.Field, EditAndContinueOperation.Default), 19118Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19119Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19120Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 19121Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19122Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 19123Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19124Row(2, TableIndex.Param, EditAndContinueOperation.Default), 19125Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19126Row(3, TableIndex.Param, EditAndContinueOperation.Default), 19127Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 19132Handle(3, TableIndex.TypeDef), 19133Handle(1, TableIndex.Field), 19134Handle(1, TableIndex.MethodDef), 19135Handle(3, TableIndex.MethodDef), 19136Handle(4, TableIndex.MethodDef), 19137Handle(2, TableIndex.Param), 19138Handle(3, TableIndex.Param), 19139Handle(4, TableIndex.CustomAttribute) 19197Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19198Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 19199Row(1, TableIndex.Param, EditAndContinueOperation.Default), 19203Handle(1, TableIndex.MethodDef), 19204Handle(3, TableIndex.MethodDef), 19205Handle(1, TableIndex.Param), 19676Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 19681Handle(1, TableIndex.MethodDef) 19780Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 19781Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 19782Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19783Row(3, TableIndex.Field, EditAndContinueOperation.Default), 19784Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19785Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19786Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 19787Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default), 19788Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 19793Handle(5, TableIndex.TypeDef), 19794Handle(6, TableIndex.TypeDef), 19795Handle(3, TableIndex.Field), 19796Handle(1, TableIndex.MethodDef), 19797Handle(5, TableIndex.CustomAttribute), 19798Handle(2, TableIndex.ClassLayout), 19799Handle(2, TableIndex.FieldRva), 19800Handle(2, TableIndex.NestedClass) 19868Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19869Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 19874Handle(1, TableIndex.MethodDef), 19875Handle(2, TableIndex.StandAloneSig) 19977Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19978Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 19979Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19980Row(2, TableIndex.Field, EditAndContinueOperation.Default), 19981Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19982Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19983Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default) 19988Handle(5, TableIndex.TypeDef), 19989Handle(2, TableIndex.Field), 19990Handle(1, TableIndex.MethodDef), 19991Handle(5, TableIndex.CustomAttribute), 19992Handle(2, TableIndex.StandAloneSig), 19993Handle(2, TableIndex.FieldRva) 20068Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 20073Handle(1, TableIndex.MethodDef) 20174Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 20175Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 20176Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20177Row(2, TableIndex.Field, EditAndContinueOperation.Default), 20178Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20179Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20180Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 20181Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default), 20182Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 20187Handle(5, TableIndex.TypeDef), 20188Handle(6, TableIndex.TypeDef), 20189Handle(2, TableIndex.Field), 20190Handle(1, TableIndex.MethodDef), 20191Handle(5, TableIndex.CustomAttribute), 20192Handle(2, TableIndex.ClassLayout), 20193Handle(2, TableIndex.FieldRva), 20194Handle(2, TableIndex.NestedClass) 20256Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 20257Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 20258Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 20259Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20260Row(3, TableIndex.Field, EditAndContinueOperation.Default), 20261Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20262Row(4, TableIndex.Field, EditAndContinueOperation.Default), 20263Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20264Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20265Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 20266Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20267Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 20268Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20269Row(3, TableIndex.Param, EditAndContinueOperation.Default), 20270Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20271Row(4, TableIndex.Param, EditAndContinueOperation.Default), 20272Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20273Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 20274Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default), 20275Row(3, TableIndex.NestedClass, EditAndContinueOperation.Default), 20276Row(4, TableIndex.NestedClass, EditAndContinueOperation.Default) 20281Handle(6, TableIndex.TypeDef), 20282Handle(7, TableIndex.TypeDef), 20283Handle(8, TableIndex.TypeDef), 20284Handle(3, TableIndex.Field), 20285Handle(4, TableIndex.Field), 20286Handle(1, TableIndex.MethodDef), 20287Handle(5, TableIndex.MethodDef), 20288Handle(6, TableIndex.MethodDef), 20289Handle(3, TableIndex.Param), 20290Handle(4, TableIndex.Param), 20291Handle(6, TableIndex.CustomAttribute), 20292Handle(2, TableIndex.ClassLayout), 20293Handle(2, TableIndex.FieldRva), 20294Handle(3, TableIndex.NestedClass), 20295Handle(4, TableIndex.NestedClass) 20355Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 20360Handle(1, TableIndex.MethodDef) 20415Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 20416Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 20417Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 20418Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20419Row(1, TableIndex.Field, EditAndContinueOperation.Default), 20420Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20421Row(2, TableIndex.Field, EditAndContinueOperation.Default), 20422Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20423Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20424Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 20425Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20426Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 20427Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20428Row(1, TableIndex.Param, EditAndContinueOperation.Default), 20429Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20430Row(2, TableIndex.Param, EditAndContinueOperation.Default), 20431Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20432Row(1, TableIndex.ClassLayout, EditAndContinueOperation.Default), 20433Row(1, TableIndex.FieldRva, EditAndContinueOperation.Default), 20434Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 20435Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 20440Handle(3, TableIndex.TypeDef), 20441Handle(4, TableIndex.TypeDef), 20442Handle(5, TableIndex.TypeDef), 20443Handle(1, TableIndex.Field), 20444Handle(2, TableIndex.Field), 20445Handle(1, TableIndex.MethodDef), 20446Handle(3, TableIndex.MethodDef), 20447Handle(4, TableIndex.MethodDef), 20448Handle(1, TableIndex.Param), 20449Handle(2, TableIndex.Param), 20450Handle(4, TableIndex.CustomAttribute), 20451Handle(1, TableIndex.ClassLayout), 20452Handle(1, TableIndex.FieldRva), 20453Handle(1, TableIndex.NestedClass), 20454Handle(2, TableIndex.NestedClass) 20521Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 20522Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 20523Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 20524Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20525Row(1, TableIndex.Field, EditAndContinueOperation.Default), 20526Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20527Row(2, TableIndex.Field, EditAndContinueOperation.Default), 20528Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 20529Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20530Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 20531Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20532Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 20533Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20534Row(4, TableIndex.Param, EditAndContinueOperation.Default), 20535Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20536Row(5, TableIndex.Param, EditAndContinueOperation.Default), 20537Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20538Row(1, TableIndex.ClassLayout, EditAndContinueOperation.Default), 20539Row(1, TableIndex.FieldRva, EditAndContinueOperation.Default), 20540Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 20541Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 20546Handle(3, TableIndex.TypeDef), 20547Handle(4, TableIndex.TypeDef), 20548Handle(5, TableIndex.TypeDef), 20549Handle(1, TableIndex.Field), 20550Handle(2, TableIndex.Field), 20551Handle(2, TableIndex.MethodDef), 20552Handle(4, TableIndex.MethodDef), 20553Handle(5, TableIndex.MethodDef), 20554Handle(4, TableIndex.Param), 20555Handle(5, TableIndex.Param), 20556Handle(4, TableIndex.CustomAttribute), 20557Handle(1, TableIndex.ClassLayout), 20558Handle(1, TableIndex.FieldRva), 20559Handle(1, TableIndex.NestedClass), 20560Handle(2, TableIndex.NestedClass) 20686Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 20687Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 20688Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 20689Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20690Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20691Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 20692Row(1, TableIndex.Param, EditAndContinueOperation.Default), 20693Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20694Row(3, TableIndex.Param, EditAndContinueOperation.Default), 20695Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 20700Handle(4, TableIndex.TypeDef), 20701Handle(1, TableIndex.MethodDef), 20702Handle(4, TableIndex.MethodDef), 20703Handle(1, TableIndex.Param), 20704Handle(3, TableIndex.Param), 20705Handle(5, TableIndex.CustomAttribute), 20706Handle(3, TableIndex.StandAloneSig), 20707Handle(4, TableIndex.StandAloneSig) 20748Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 20749Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 20750Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20751Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20752Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 20753Row(1, TableIndex.Param, EditAndContinueOperation.Default), 20754Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20755Row(3, TableIndex.Param, EditAndContinueOperation.Default), 20756Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 20761Handle(4, TableIndex.TypeDef), 20762Handle(1, TableIndex.MethodDef), 20763Handle(4, TableIndex.MethodDef), 20764Handle(1, TableIndex.Param), 20765Handle(3, TableIndex.Param), 20766Handle(5, TableIndex.CustomAttribute), 20767Handle(2, TableIndex.StandAloneSig) 20834Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 20835Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 20836Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20837Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20838Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 20839Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20840Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 20841Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20842Row(2, TableIndex.Param, EditAndContinueOperation.Default), 20843Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20844Row(3, TableIndex.Param, EditAndContinueOperation.Default), 20845Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20846Row(4, TableIndex.Param, EditAndContinueOperation.Default), 20847Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20848Row(3, TableIndex.GenericParam, EditAndContinueOperation.Default), 20849Row(4, TableIndex.GenericParam, EditAndContinueOperation.Default), 20850Row(5, TableIndex.GenericParam, EditAndContinueOperation.Default), 20851Row(6, TableIndex.GenericParam, EditAndContinueOperation.Default) 20856Handle(5, TableIndex.TypeDef), 20857Handle(1, TableIndex.MethodDef), 20858Handle(4, TableIndex.MethodDef), 20859Handle(5, TableIndex.MethodDef), 20860Handle(2, TableIndex.Param), 20861Handle(3, TableIndex.Param), 20862Handle(4, TableIndex.Param), 20863Handle(6, TableIndex.CustomAttribute), 20864Handle(2, TableIndex.StandAloneSig), 20865Handle(3, TableIndex.GenericParam), 20866Handle(4, TableIndex.GenericParam), 20867Handle(5, TableIndex.GenericParam), 20868Handle(6, TableIndex.GenericParam) 20960Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 20961Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 20962Row(9, TableIndex.TypeDef, EditAndContinueOperation.Default), 20963Row(9, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20964Row(3, TableIndex.Field, EditAndContinueOperation.Default), 20965Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 20966Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20967Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 20968Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 20969Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 20970Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20971Row(9, TableIndex.Param, EditAndContinueOperation.Default), 20972Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20973Row(10, TableIndex.Param, EditAndContinueOperation.Default), 20974Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20975Row(11, TableIndex.Param, EditAndContinueOperation.Default), 20976Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 20977Row(12, TableIndex.Param, EditAndContinueOperation.Default), 20978Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20979Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20980Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20981Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20982Row(8, TableIndex.GenericParam, EditAndContinueOperation.Default), 20983Row(9, TableIndex.GenericParam, EditAndContinueOperation.Default), 20984Row(10, TableIndex.GenericParam, EditAndContinueOperation.Default), 20985Row(11, TableIndex.GenericParam, EditAndContinueOperation.Default), 20986Row(12, TableIndex.GenericParam, EditAndContinueOperation.Default) 20991Handle(8, TableIndex.TypeDef), 20992Handle(9, TableIndex.TypeDef), 20993Handle(3, TableIndex.Field), 20994Handle(6, TableIndex.MethodDef), 20995Handle(11, TableIndex.MethodDef), 20996Handle(12, TableIndex.MethodDef), 20997Handle(9, TableIndex.Param), 20998Handle(10, TableIndex.Param), 20999Handle(11, TableIndex.Param), 21000Handle(12, TableIndex.Param), 21001Handle(10, TableIndex.CustomAttribute), 21002Handle(11, TableIndex.CustomAttribute), 21003Handle(12, TableIndex.CustomAttribute), 21004Handle(13, TableIndex.CustomAttribute), 21005Handle(3, TableIndex.StandAloneSig), 21006Handle(8, TableIndex.GenericParam), 21007Handle(9, TableIndex.GenericParam), 21008Handle(10, TableIndex.GenericParam), 21009Handle(11, TableIndex.GenericParam), 21010Handle(12, TableIndex.GenericParam) 21031Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 21032Row(10, TableIndex.TypeDef, EditAndContinueOperation.Default), 21033Row(11, TableIndex.TypeDef, EditAndContinueOperation.Default), 21034Row(11, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21035Row(4, TableIndex.Field, EditAndContinueOperation.Default), 21036Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 21037Row(10, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21038Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 21039Row(10, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21040Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 21041Row(13, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21042Row(13, TableIndex.Param, EditAndContinueOperation.Default), 21043Row(13, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21044Row(14, TableIndex.Param, EditAndContinueOperation.Default), 21045Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21046Row(15, TableIndex.Param, EditAndContinueOperation.Default), 21047Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21048Row(16, TableIndex.Param, EditAndContinueOperation.Default), 21049Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21050Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21051Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21052Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21053Row(13, TableIndex.GenericParam, EditAndContinueOperation.Default), 21054Row(14, TableIndex.GenericParam, EditAndContinueOperation.Default), 21055Row(15, TableIndex.GenericParam, EditAndContinueOperation.Default), 21056Row(16, TableIndex.GenericParam, EditAndContinueOperation.Default), 21057Row(17, TableIndex.GenericParam, EditAndContinueOperation.Default) 21062Handle(10, TableIndex.TypeDef), 21063Handle(11, TableIndex.TypeDef), 21064Handle(4, TableIndex.Field), 21065Handle(6, TableIndex.MethodDef), 21066Handle(13, TableIndex.MethodDef), 21067Handle(14, TableIndex.MethodDef), 21068Handle(13, TableIndex.Param), 21069Handle(14, TableIndex.Param), 21070Handle(15, TableIndex.Param), 21071Handle(16, TableIndex.Param), 21072Handle(14, TableIndex.CustomAttribute), 21073Handle(15, TableIndex.CustomAttribute), 21074Handle(16, TableIndex.CustomAttribute), 21075Handle(17, TableIndex.CustomAttribute), 21076Handle(4, TableIndex.StandAloneSig), 21077Handle(13, TableIndex.GenericParam), 21078Handle(14, TableIndex.GenericParam), 21079Handle(15, TableIndex.GenericParam), 21080Handle(16, TableIndex.GenericParam), 21081Handle(17, TableIndex.GenericParam)
PDB\PDBUsingTests.cs (1)
2997Assert.Equal(1, reader.GetTableRowCount(TableIndex.TypeSpec));
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (25)
Attributes\AttributeTests_Assembly.cs (10)
1066Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1112Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 1113Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1133Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 1134Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1187Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1227Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 1228Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1248Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 1249Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType));
Attributes\AttributeTests_StructLayout.cs (3)
45Assert.Equal(9, metadataReader.GetTableRowCount(TableIndex.ClassLayout)); 363Assert.Equal(2, reader.GetTableRowCount(TableIndex.FieldLayout)); 411Assert.Equal(2, reader.GetTableRowCount(TableIndex.FieldLayout));
Attributes\AttributeTests_WellKnownAttributes.cs (12)
2136Assert.Equal(15, metadataReader.GetTableRowCount(TableIndex.Param)); 2638Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 2639Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 2700Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.File)); 2703Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 2812Assert.Equal(4, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 2813Assert.Equal(5, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 2928Assert.Equal(cases.Length, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 3429Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 3430Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 3461Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 3462Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ImplMap));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (9)
Symbols\Metadata\PE\TypeForwarders.cs (7)
1534Assert.Equal(forwardedTypeFullNames.Length, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1659Assert.Equal(1, peReader.GetTableRowCount(TableIndex.ExportedType)); 1670Assert.Equal(1, peReader1.GetTableRowCount(TableIndex.ExportedType)); 1713Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)); 1723Assert.Equal(0, peReader1.GetTableRowCount(TableIndex.ExportedType)); 1733Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)); 1803Assert.Equal(forwardedTypeFullNames.Length, peReader.GetTableRowCount(TableIndex.ExportedType));
Symbols\PartialPropertiesTests.cs (2)
839Assert.Equal(2, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 840Assert.Equal(2, metadataReader.GetTableRowCount(TableIndex.ImplMap));
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
PDB\MethodDebugInfo.Portable.cs (1)
97if (reader.GetTableRowCount(TableIndex.EncMap) == 0)
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditSession.cs (1)
140var highestExistingTypeDefRow = emitResult.Baseline.OriginalMetadata.GetMetadataReader().GetTableRowCount(TableIndex.TypeDef);
Microsoft.CodeAnalysis.Features.Test.Utilities (2)
EditAndContinue\EditAndContinueWorkspaceTestBase.cs (2)
516internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation) 529TableIndex tableIndex;
Microsoft.CodeAnalysis.Test.Utilities (9)
Metadata\ILValidation.cs (3)
324var fieldRvaTablePtr = reader.MetadataPointer + reader.GetTableMetadataOffset(TableIndex.FieldRva); 325var rowCount = reader.GetTableRowCount(TableIndex.FieldRva); 326var rowSize = reader.GetTableRowSize(TableIndex.FieldRva);
Metadata\MetadataReaderUtils.cs (5)
29for (int i = 1, n = reader.GetTableRowCount(TableIndex.Constant); i <= n; i++) 37for (int i = 1, n = reader.GetTableRowCount(TableIndex.Param); i <= n; i++) 45for (int i = 1, n = reader.GetTableRowCount(TableIndex.GenericParam); i <= n; i++) 53for (int i = 1, n = reader.GetTableRowCount(TableIndex.GenericParamConstraint); i <= n; i++) 61for (int i = 1, n = reader.GetTableRowCount(TableIndex.ModuleRef); i <= n; i++)
Metadata\MetadataValidation.cs (1)
136Assert.Equal(expectedMarshalCount, metadataReader.GetTableRowCount(TableIndex.FieldMarshal));
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1160)
Attributes\AssemblyAttributes.vb (10)
1296Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1333Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 1334Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1349Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 1350Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1413Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1444Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 1445Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1460Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 1461Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType))
Attributes\AttributeTests_StructLayout.vb (2)
69Assert.Equal(9, reader.GetTableRowCount(TableIndex.ClassLayout)) 597Assert.Equal(2, reader.GetTableRowCount(TableIndex.FieldLayout))
Attributes\AttributeTests_WellKnownAttributes.vb (21)
1420Assert.Equal(3, reader.GetTableRowCount(TableIndex.ModuleRef)) 1421Assert.Equal(3, reader.GetTableRowCount(TableIndex.ImplMap)) 1507Assert.Equal(0, reader.GetTableRowCount(TableIndex.File)) 1508Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 1656Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 1657Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 1689Assert.Equal(1, peFileReader.GetTableRowCount(TableIndex.ModuleRef)) 1690Assert.Equal(1, peFileReader.GetTableRowCount(TableIndex.ImplMap)) 1724Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 1725Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 1941Assert.Equal(cases.Length, reader.GetTableRowCount(TableIndex.ImplMap)) 2519Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 2520Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 2550Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 2551Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 2769Assert.Equal(0, reader.GetTableRowCount(TableIndex.File)) 2770Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 2813Assert.Equal(4, peFileReader.GetTableRowCount(TableIndex.ModuleRef)) 2814Assert.Equal(4, peFileReader.GetTableRowCount(TableIndex.ImplMap)) 2973Assert.Equal(12, reader.GetTableRowCount(TableIndex.Param)) 3032Assert.Equal(3 + 3 + 1, reader.GetTableRowCount(TableIndex.Param))
Emit\EditAndContinue\EditAndContinueClosureTests.vb (98)
60Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 61Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 62Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 63Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 64Row(1, TableIndex.Field, EditAndContinueOperation.Default), 65Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 66Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 67Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 68Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 69Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 70Row(6, TableIndex.Param, EditAndContinueOperation.Default), 71Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 72Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default)) 121Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 122Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 123Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 124Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)) 172Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 173Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 174Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 175Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)) 223Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 224Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 225Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 226Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 227Row(1, TableIndex.Param, EditAndContinueOperation.Default), 228Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 277Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 278Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 279Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 280Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 281Row(1, TableIndex.Param, EditAndContinueOperation.Default)) 356Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 357Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 358Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 359Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 360Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 361Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 362Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 363Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 364Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 365Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 366Row(2, TableIndex.Param, EditAndContinueOperation.Default), 367Row(3, TableIndex.Param, EditAndContinueOperation.Default)) 441Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 442Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 443Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 444Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 445Row(11, TableIndex.Field, EditAndContinueOperation.Default), 446Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 447Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 448Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 449Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 450Row(6, TableIndex.Param, EditAndContinueOperation.Default), 451Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 452Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 453Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 643Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 644Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 645Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 646Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)) 712Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 713Row(23, TableIndex.MethodDef, EditAndContinueOperation.Default), 714Row(27, TableIndex.MethodDef, EditAndContinueOperation.Default), 715Row(28, TableIndex.MethodDef, EditAndContinueOperation.Default), 716Row(29, TableIndex.MethodDef, EditAndContinueOperation.Default), 717Row(30, TableIndex.MethodDef, EditAndContinueOperation.Default), 718Row(31, TableIndex.MethodDef, EditAndContinueOperation.Default), 719Row(32, TableIndex.MethodDef, EditAndContinueOperation.Default), 720Row(33, TableIndex.MethodDef, EditAndContinueOperation.Default), 721Row(34, TableIndex.MethodDef, EditAndContinueOperation.Default), 722Row(14, TableIndex.Param, EditAndContinueOperation.Default), 723Row(15, TableIndex.Param, EditAndContinueOperation.Default), 724Row(16, TableIndex.Param, EditAndContinueOperation.Default), 725Row(17, TableIndex.Param, EditAndContinueOperation.Default), 726Row(18, TableIndex.Param, EditAndContinueOperation.Default), 727Row(19, TableIndex.Param, EditAndContinueOperation.Default), 728Row(20, TableIndex.Param, EditAndContinueOperation.Default), 729Row(21, TableIndex.Param, EditAndContinueOperation.Default), 730Row(22, TableIndex.Param, EditAndContinueOperation.Default), 731Row(23, TableIndex.Param, EditAndContinueOperation.Default)) 785Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 786Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 787Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 788Row(5, TableIndex.Param, EditAndContinueOperation.Default)) 849Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 850Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 851Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 852Row(5, TableIndex.Param, EditAndContinueOperation.Default)) 915Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 916Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 917Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 918Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 919Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 920Row(5, TableIndex.Param, EditAndContinueOperation.Default), 921Row(6, TableIndex.Param, EditAndContinueOperation.Default), 922Row(7, TableIndex.Param, EditAndContinueOperation.Default), 923Row(8, TableIndex.Param, EditAndContinueOperation.Default))
Emit\EditAndContinue\EditAndContinuePdbTests.vb (45)
163Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 164Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 165Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 166Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 167Row(5, TableIndex.Field, EditAndContinueOperation.Default), 168Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 169Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 170Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 171Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 172Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 173Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 174Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default)) 179Handle(11, TableIndex.MethodDebugInformation), 180Handle(13, TableIndex.MethodDebugInformation), 181Handle(16, TableIndex.MethodDebugInformation), 182Handle(17, TableIndex.MethodDebugInformation), 183Handle(18, TableIndex.MethodDebugInformation), 184Handle(19, TableIndex.MethodDebugInformation)) 266Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 267Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 268Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 269Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 270Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 271Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 272Row(6, TableIndex.Field, EditAndContinueOperation.Default), 273Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 274Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 275Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 276Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 277Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 278Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 279Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 280Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 281Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 282Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 283Row(21, TableIndex.MethodDef, EditAndContinueOperation.Default)) 288Handle(10, TableIndex.MethodDebugInformation), 289Handle(11, TableIndex.MethodDebugInformation), 290Handle(13, TableIndex.MethodDebugInformation), 291Handle(16, TableIndex.MethodDebugInformation), 292Handle(17, TableIndex.MethodDebugInformation), 293Handle(18, TableIndex.MethodDebugInformation), 294Handle(19, TableIndex.MethodDebugInformation), 295Handle(20, TableIndex.MethodDebugInformation), 296Handle(21, TableIndex.MethodDebugInformation))
Emit\EditAndContinue\EditAndContinueStateMachineTests.vb (610)
66Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 67Row(17, TableIndex.MemberRef, EditAndContinueOperation.Default), 68Row(18, TableIndex.MemberRef, EditAndContinueOperation.Default), 69Row(19, TableIndex.MemberRef, EditAndContinueOperation.Default), 70Row(20, TableIndex.MemberRef, EditAndContinueOperation.Default), 71Row(21, TableIndex.MemberRef, EditAndContinueOperation.Default), 72Row(22, TableIndex.MemberRef, EditAndContinueOperation.Default), 73Row(23, TableIndex.MemberRef, EditAndContinueOperation.Default), 74Row(24, TableIndex.MemberRef, EditAndContinueOperation.Default), 75Row(25, TableIndex.MemberRef, EditAndContinueOperation.Default), 76Row(26, TableIndex.MemberRef, EditAndContinueOperation.Default), 77Row(27, TableIndex.MemberRef, EditAndContinueOperation.Default), 78Row(28, TableIndex.MemberRef, EditAndContinueOperation.Default), 79Row(29, TableIndex.MemberRef, EditAndContinueOperation.Default), 80Row(18, TableIndex.TypeRef, EditAndContinueOperation.Default), 81Row(19, TableIndex.TypeRef, EditAndContinueOperation.Default), 82Row(20, TableIndex.TypeRef, EditAndContinueOperation.Default), 83Row(21, TableIndex.TypeRef, EditAndContinueOperation.Default), 84Row(22, TableIndex.TypeRef, EditAndContinueOperation.Default), 85Row(23, TableIndex.TypeRef, EditAndContinueOperation.Default), 86Row(24, TableIndex.TypeRef, EditAndContinueOperation.Default), 87Row(25, TableIndex.TypeRef, EditAndContinueOperation.Default), 88Row(26, TableIndex.TypeRef, EditAndContinueOperation.Default), 89Row(27, TableIndex.TypeRef, EditAndContinueOperation.Default), 90Row(28, TableIndex.TypeRef, EditAndContinueOperation.Default), 91Row(29, TableIndex.TypeRef, EditAndContinueOperation.Default), 92Row(30, TableIndex.TypeRef, EditAndContinueOperation.Default), 93Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 94Row(4, TableIndex.TypeSpec, EditAndContinueOperation.Default), 95Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 96Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 97Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 98Row(2, TableIndex.PropertyMap, EditAndContinueOperation.Default), 99Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 100Row(5, TableIndex.Field, EditAndContinueOperation.Default), 101Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 102Row(6, TableIndex.Field, EditAndContinueOperation.Default), 103Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 104Row(7, TableIndex.Field, EditAndContinueOperation.Default), 105Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 106Row(8, TableIndex.Field, EditAndContinueOperation.Default), 107Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 108Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 109Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 110Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 111Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 112Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 113Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 114Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 115Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 116Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 117Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 118Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 119Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 120Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 121Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 122Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 123Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 124Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 125Row(2, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 126Row(3, TableIndex.Property, EditAndContinueOperation.Default), 127Row(2, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 128Row(4, TableIndex.Property, EditAndContinueOperation.Default), 129Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 130Row(2, TableIndex.Param, EditAndContinueOperation.Default), 131Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 132Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 133Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 134Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 135Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 136Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 137Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 138Row(20, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 139Row(21, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 140Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 141Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 142Row(8, TableIndex.MethodImpl, EditAndContinueOperation.Default), 143Row(9, TableIndex.MethodImpl, EditAndContinueOperation.Default), 144Row(10, TableIndex.MethodImpl, EditAndContinueOperation.Default), 145Row(11, TableIndex.MethodImpl, EditAndContinueOperation.Default), 146Row(12, TableIndex.MethodImpl, EditAndContinueOperation.Default), 147Row(13, TableIndex.MethodImpl, EditAndContinueOperation.Default), 148Row(14, TableIndex.MethodImpl, EditAndContinueOperation.Default), 149Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 150Row(6, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 151Row(7, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 152Row(8, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 153Row(9, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 154Row(10, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 156Handle(18, TableIndex.TypeRef), 157Handle(19, TableIndex.TypeRef), 158Handle(20, TableIndex.TypeRef), 159Handle(21, TableIndex.TypeRef), 160Handle(22, TableIndex.TypeRef), 161Handle(23, TableIndex.TypeRef), 162Handle(24, TableIndex.TypeRef), 163Handle(25, TableIndex.TypeRef), 164Handle(26, TableIndex.TypeRef), 165Handle(27, TableIndex.TypeRef), 166Handle(28, TableIndex.TypeRef), 167Handle(29, TableIndex.TypeRef), 168Handle(30, TableIndex.TypeRef), 169Handle(4, TableIndex.TypeDef), 170Handle(5, TableIndex.Field), 171Handle(6, TableIndex.Field), 172Handle(7, TableIndex.Field), 173Handle(8, TableIndex.Field), 174Handle(11, TableIndex.MethodDef), 175Handle(12, TableIndex.MethodDef), 176Handle(13, TableIndex.MethodDef), 177Handle(14, TableIndex.MethodDef), 178Handle(15, TableIndex.MethodDef), 179Handle(16, TableIndex.MethodDef), 180Handle(17, TableIndex.MethodDef), 181Handle(18, TableIndex.MethodDef), 182Handle(19, TableIndex.MethodDef), 183Handle(2, TableIndex.Param), 184Handle(6, TableIndex.InterfaceImpl), 185Handle(7, TableIndex.InterfaceImpl), 186Handle(8, TableIndex.InterfaceImpl), 187Handle(9, TableIndex.InterfaceImpl), 188Handle(10, TableIndex.InterfaceImpl), 189Handle(17, TableIndex.MemberRef), 190Handle(18, TableIndex.MemberRef), 191Handle(19, TableIndex.MemberRef), 192Handle(20, TableIndex.MemberRef), 193Handle(21, TableIndex.MemberRef), 194Handle(22, TableIndex.MemberRef), 195Handle(23, TableIndex.MemberRef), 196Handle(24, TableIndex.MemberRef), 197Handle(25, TableIndex.MemberRef), 198Handle(26, TableIndex.MemberRef), 199Handle(27, TableIndex.MemberRef), 200Handle(28, TableIndex.MemberRef), 201Handle(29, TableIndex.MemberRef), 202Handle(13, TableIndex.CustomAttribute), 203Handle(14, TableIndex.CustomAttribute), 204Handle(15, TableIndex.CustomAttribute), 205Handle(16, TableIndex.CustomAttribute), 206Handle(17, TableIndex.CustomAttribute), 207Handle(18, TableIndex.CustomAttribute), 208Handle(19, TableIndex.CustomAttribute), 209Handle(20, TableIndex.CustomAttribute), 210Handle(21, TableIndex.CustomAttribute), 211Handle(3, TableIndex.StandAloneSig), 212Handle(4, TableIndex.StandAloneSig), 213Handle(2, TableIndex.PropertyMap), 214Handle(3, TableIndex.Property), 215Handle(4, TableIndex.Property), 216Handle(3, TableIndex.MethodSemantics), 217Handle(4, TableIndex.MethodSemantics), 218Handle(8, TableIndex.MethodImpl), 219Handle(9, TableIndex.MethodImpl), 220Handle(10, TableIndex.MethodImpl), 221Handle(11, TableIndex.MethodImpl), 222Handle(12, TableIndex.MethodImpl), 223Handle(13, TableIndex.MethodImpl), 224Handle(14, TableIndex.MethodImpl), 225Handle(3, TableIndex.TypeSpec), 226Handle(4, TableIndex.TypeSpec), 227Handle(2, TableIndex.AssemblyRef), 228Handle(2, TableIndex.NestedClass)) 420Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 421Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 422Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 423Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 424Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 425Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 426Row(9, TableIndex.MemberRef, EditAndContinueOperation.Default), 427Row(10, TableIndex.MemberRef, EditAndContinueOperation.Default), 428Row(11, TableIndex.MemberRef, EditAndContinueOperation.Default), 429Row(12, TableIndex.MemberRef, EditAndContinueOperation.Default), 430Row(13, TableIndex.MemberRef, EditAndContinueOperation.Default), 431Row(14, TableIndex.MemberRef, EditAndContinueOperation.Default), 432Row(15, TableIndex.MemberRef, EditAndContinueOperation.Default), 433Row(16, TableIndex.MemberRef, EditAndContinueOperation.Default), 434Row(17, TableIndex.MemberRef, EditAndContinueOperation.Default), 435Row(18, TableIndex.MemberRef, EditAndContinueOperation.Default), 436Row(19, TableIndex.MemberRef, EditAndContinueOperation.Default), 437Row(20, TableIndex.MemberRef, EditAndContinueOperation.Default), 438Row(21, TableIndex.MemberRef, EditAndContinueOperation.Default), 439Row(22, TableIndex.MemberRef, EditAndContinueOperation.Default), 440Row(23, TableIndex.MemberRef, EditAndContinueOperation.Default), 441Row(1, TableIndex.MethodSpec, EditAndContinueOperation.Default), 442Row(2, TableIndex.MethodSpec, EditAndContinueOperation.Default), 443Row(3, TableIndex.MethodSpec, EditAndContinueOperation.Default), 444Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 445Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 446Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 447Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 448Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 449Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 450Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 451Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 452Row(14, TableIndex.TypeRef, EditAndContinueOperation.Default), 453Row(15, TableIndex.TypeRef, EditAndContinueOperation.Default), 454Row(16, TableIndex.TypeRef, EditAndContinueOperation.Default), 455Row(17, TableIndex.TypeRef, EditAndContinueOperation.Default), 456Row(18, TableIndex.TypeRef, EditAndContinueOperation.Default), 457Row(1, TableIndex.TypeSpec, EditAndContinueOperation.Default), 458Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 459Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 460Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 461Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 462Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 463Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 464Row(1, TableIndex.Field, EditAndContinueOperation.Default), 465Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 466Row(2, TableIndex.Field, EditAndContinueOperation.Default), 467Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 468Row(3, TableIndex.Field, EditAndContinueOperation.Default), 469Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 470Row(4, TableIndex.Field, EditAndContinueOperation.Default), 471Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 472Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 473Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 474Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 475Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 476Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 477Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 478Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 479Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 480Row(1, TableIndex.Param, EditAndContinueOperation.Default), 481Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 482Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 483Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 484Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 485Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 486Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 487Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 488Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 489Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 491Handle(6, TableIndex.TypeRef), 492Handle(7, TableIndex.TypeRef), 493Handle(8, TableIndex.TypeRef), 494Handle(9, TableIndex.TypeRef), 495Handle(10, TableIndex.TypeRef), 496Handle(11, TableIndex.TypeRef), 497Handle(12, TableIndex.TypeRef), 498Handle(13, TableIndex.TypeRef), 499Handle(14, TableIndex.TypeRef), 500Handle(15, TableIndex.TypeRef), 501Handle(16, TableIndex.TypeRef), 502Handle(17, TableIndex.TypeRef), 503Handle(18, TableIndex.TypeRef), 504Handle(3, TableIndex.TypeDef), 505Handle(1, TableIndex.Field), 506Handle(2, TableIndex.Field), 507Handle(3, TableIndex.Field), 508Handle(4, TableIndex.Field), 509Handle(2, TableIndex.MethodDef), 510Handle(3, TableIndex.MethodDef), 511Handle(4, TableIndex.MethodDef), 512Handle(5, TableIndex.MethodDef), 513Handle(1, TableIndex.Param), 514Handle(1, TableIndex.InterfaceImpl), 515Handle(5, TableIndex.MemberRef), 516Handle(6, TableIndex.MemberRef), 517Handle(7, TableIndex.MemberRef), 518Handle(8, TableIndex.MemberRef), 519Handle(9, TableIndex.MemberRef), 520Handle(10, TableIndex.MemberRef), 521Handle(11, TableIndex.MemberRef), 522Handle(12, TableIndex.MemberRef), 523Handle(13, TableIndex.MemberRef), 524Handle(14, TableIndex.MemberRef), 525Handle(15, TableIndex.MemberRef), 526Handle(16, TableIndex.MemberRef), 527Handle(17, TableIndex.MemberRef), 528Handle(18, TableIndex.MemberRef), 529Handle(19, TableIndex.MemberRef), 530Handle(20, TableIndex.MemberRef), 531Handle(21, TableIndex.MemberRef), 532Handle(22, TableIndex.MemberRef), 533Handle(23, TableIndex.MemberRef), 534Handle(4, TableIndex.CustomAttribute), 535Handle(5, TableIndex.CustomAttribute), 536Handle(6, TableIndex.CustomAttribute), 537Handle(7, TableIndex.CustomAttribute), 538Handle(8, TableIndex.CustomAttribute), 539Handle(1, TableIndex.StandAloneSig), 540Handle(2, TableIndex.StandAloneSig), 541Handle(1, TableIndex.MethodImpl), 542Handle(2, TableIndex.MethodImpl), 543Handle(1, TableIndex.TypeSpec), 544Handle(2, TableIndex.TypeSpec), 545Handle(3, TableIndex.TypeSpec), 546Handle(2, TableIndex.AssemblyRef), 547Handle(3, TableIndex.AssemblyRef), 548Handle(1, TableIndex.NestedClass), 549Handle(1, TableIndex.MethodSpec), 550Handle(2, TableIndex.MethodSpec), 551Handle(3, TableIndex.MethodSpec)) 750Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 751Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 752Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 753Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 754Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 755Row(1, TableIndex.Field, EditAndContinueOperation.Default), 756Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 757Row(2, TableIndex.Field, EditAndContinueOperation.Default), 758Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 759Row(3, TableIndex.Field, EditAndContinueOperation.Default), 760Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 761Row(4, TableIndex.Field, EditAndContinueOperation.Default), 762Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 763Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 764Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 765Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 766Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 767Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 768Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 769Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 770Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 771Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 772Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 773Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 774Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 775Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 776Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 777Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 778Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 779Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 780Row(1, TableIndex.Property, EditAndContinueOperation.Default), 781Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 782Row(2, TableIndex.Property, EditAndContinueOperation.Default), 783Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 784Row(1, TableIndex.Param, EditAndContinueOperation.Default), 785Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 786Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 787Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 788Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 789Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 790Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 791Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 792Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 793Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 794Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 795Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 796Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 797Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 798Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 799Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 800Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 801Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 802Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 803Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 804Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 805Row(2, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 806Row(3, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 807Row(4, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 808Row(5, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 858Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 859Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 860Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 861Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 862Row(1, TableIndex.Field, EditAndContinueOperation.Default), 863Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 864Row(2, TableIndex.Field, EditAndContinueOperation.Default), 865Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 866Row(3, TableIndex.Field, EditAndContinueOperation.Default), 867Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 868Row(4, TableIndex.Field, EditAndContinueOperation.Default), 869Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 870Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 871Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 872Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 873Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 874Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 875Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 876Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 877Row(1, TableIndex.Param, EditAndContinueOperation.Default), 878Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 879Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 880Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 881Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 882Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 883Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 884Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 885Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 886Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 933Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 934Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 935Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 981Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 982Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 983Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 984Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 1071Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1072Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1073Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1074Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1075Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1076Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1077Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 1078Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 1079Row(16, TableIndex.Field, EditAndContinueOperation.Default), 1080Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1081Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1082Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1083Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1084Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1085Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 1086Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1087Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 1088Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1089Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1090Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1091Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1092Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1093Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1094Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1095Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1096Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1097Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1098Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1099Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1180Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1181Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1182Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1183Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1184Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1185Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1186Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1187Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1366Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1367Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1368Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1369Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1370Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1371Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1372Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 3608Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3609Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3610Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3611Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3612Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3613Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3614Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3615Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3616Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 3713Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3714Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3715Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3716Row(8, TableIndex.Field, EditAndContinueOperation.Default), 3717Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3718Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3719Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3720Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3721Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3722Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3723Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 3823Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3824Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3825Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3826Row(8, TableIndex.Field, EditAndContinueOperation.Default), 3827Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3828Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3829Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3830Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3831Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3832Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3833Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 3929Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3930Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3931Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3932Row(6, TableIndex.Field, EditAndContinueOperation.Default), 3933Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3934Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3935Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3936Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3937Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3938Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 4062Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4063Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4064Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4065Row(8, TableIndex.Field, EditAndContinueOperation.Default), 4066Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4067Row(9, TableIndex.Field, EditAndContinueOperation.Default), 4068Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4069Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4070Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4071Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4072Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4073Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 6385Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6386Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6387Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6388Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6389Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6390Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6391Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6392Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 6538Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6539Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6540Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6541Row(7, TableIndex.Field, EditAndContinueOperation.Default), 6542Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6543Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6544Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6545Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6546Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6547Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 6696Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6697Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6698Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6699Row(7, TableIndex.Field, EditAndContinueOperation.Default), 6700Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6701Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6702Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6703Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6704Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6705Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 6850Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6851Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6852Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6853Row(6, TableIndex.Field, EditAndContinueOperation.Default), 6854Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6855Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6856Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6857Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6858Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7140Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7141Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7142Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7143Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7144Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7145Row(19, TableIndex.Field, EditAndContinueOperation.Default), 7146Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7147Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7148Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7149Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7150Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7151Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7152Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7153Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7154Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7155Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7260Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7261Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7262Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7263Row(20, TableIndex.Field, EditAndContinueOperation.Default), 7264Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7265Row(21, TableIndex.Field, EditAndContinueOperation.Default), 7266Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7267Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7268Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7269Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7270Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7375Row(13, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7376Row(14, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7377Row(15, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7378Row(16, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7379Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7380Row(22, TableIndex.Field, EditAndContinueOperation.Default), 7381Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7382Row(23, TableIndex.Field, EditAndContinueOperation.Default), 7383Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7384Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7385Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7386Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7387Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7388Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7389Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7390Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7391Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7392Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7641Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7642Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7643Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7644Row(13, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7645Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7646Row(14, TableIndex.Field, EditAndContinueOperation.Default), 7647Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7648Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7649Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7650Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7651Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7652Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7653Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7654Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7655Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7656Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7804Row(14, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7805Row(15, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7806Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7807Row(15, TableIndex.Field, EditAndContinueOperation.Default), 7808Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7809Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7810Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7811Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7812Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7960Row(16, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7961Row(17, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7962Row(18, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7963Row(19, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7964Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7965Row(16, TableIndex.Field, EditAndContinueOperation.Default), 7966Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7967Row(17, TableIndex.Field, EditAndContinueOperation.Default), 7968Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7969Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 7970Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7971Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 7972Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7973Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7974Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7975Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7976Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7977Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default))
Emit\EditAndContinue\EditAndContinueTestBase.vb (2)
191Friend Shared Function Row(rowNumber As Integer, table As TableIndex, operation As EditAndContinueOperation) As EditAndContinueLogEntry 195Friend Shared Function Handle(rowNumber As Integer, table As TableIndex) As EntityHandle
Emit\EditAndContinue\EditAndContinueTests.vb (369)
204Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 205Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 206Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 207Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 208Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 209Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 210Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 211Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) ' C.F 213Handle(8, TableIndex.TypeRef), 214Handle(9, TableIndex.TypeRef), 215Handle(3, TableIndex.MethodDef), 216Handle(7, TableIndex.MemberRef), 217Handle(2, TableIndex.StandAloneSig), 218Handle(2, TableIndex.TypeSpec), 219Handle(3, TableIndex.AssemblyRef), 220Handle(4, TableIndex.AssemblyRef)) 267Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 268Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 269Row(1, TableIndex.Param, EditAndContinueOperation.Default)) 272Handle(2, TableIndex.MethodDef), 273Handle(1, TableIndex.Param), 274Handle(2, TableIndex.StandAloneSig)) 311Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 312Row(1, TableIndex.Param, EditAndContinueOperation.Default) 317Handle(2, TableIndex.MethodDef), 318Handle(1, TableIndex.Param) 369Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 370Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 371Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) 373Handle(6, TableIndex.TypeRef), 374Handle(3, TableIndex.MethodDef), 375Handle(2, TableIndex.AssemblyRef)) 449Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 450Row(4, TableIndex.MemberRef, EditAndContinueOperation.Default), 451Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 452Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 453Row(5, TableIndex.TypeRef, EditAndContinueOperation.Default), 454Row(1, TableIndex.TypeSpec, EditAndContinueOperation.Default), 455Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 456Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 457Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 458Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 459Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 460Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 461Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 462Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 463Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 464Row(2, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 466Handle(5, TableIndex.TypeRef), 467Handle(3, TableIndex.TypeDef), 468Handle(2, TableIndex.MethodDef), 469Handle(3, TableIndex.MethodDef), 470Handle(1, TableIndex.InterfaceImpl), 471Handle(2, TableIndex.InterfaceImpl), 472Handle(4, TableIndex.MemberRef), 473Handle(5, TableIndex.MemberRef), 474Handle(6, TableIndex.MemberRef), 475Handle(1, TableIndex.MethodImpl), 476Handle(2, TableIndex.MethodImpl), 477Handle(1, TableIndex.TypeSpec), 478Handle(2, TableIndex.TypeSpec), 479Handle(2, TableIndex.AssemblyRef)) 492Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 493Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 494Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 495Row(4, TableIndex.TypeSpec, EditAndContinueOperation.Default), 496Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) 498Handle(6, TableIndex.TypeRef), 499Handle(3, TableIndex.MethodDef), 500Handle(3, TableIndex.TypeSpec), 501Handle(4, TableIndex.TypeSpec), 502Handle(3, TableIndex.AssemblyRef)) 515Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 516Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 517Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 518Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 519Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 520Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 521Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 522Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 523Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 524Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 525Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 526Row(3, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 528Handle(6, TableIndex.TypeRef), 529Handle(4, TableIndex.TypeDef), 530Handle(4, TableIndex.MethodDef), 531Handle(5, TableIndex.MethodDef), 532Handle(3, TableIndex.InterfaceImpl), 533Handle(7, TableIndex.MemberRef), 534Handle(8, TableIndex.MemberRef), 535Handle(3, TableIndex.MethodImpl), 536Handle(3, TableIndex.TypeSpec), 537Handle(3, TableIndex.AssemblyRef)) 582Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 583Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 584Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 585Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) 587Handle(6, TableIndex.TypeRef), 588Handle(3, TableIndex.MethodDef), 589Handle(5, TableIndex.MemberRef), 590Handle(2, TableIndex.AssemblyRef)) 1467Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 1468Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 1469Row(1, TableIndex.Field, EditAndContinueOperation.Default), 1470Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1471Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1472Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1473Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1474Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default) 1530Row(1, TableIndex.Event, EditAndContinueOperation.Default), 1531Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1532Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1533Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1534Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1535Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1536Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1537Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1538Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 1635Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 1636Row(1, TableIndex.Event, EditAndContinueOperation.Default), 1637Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 1638Row(1, TableIndex.Field, EditAndContinueOperation.Default), 1639Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1640Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1641Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1642Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1643Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1644Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1645Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1646Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 1647Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 1648Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1649Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 1650Row(4, TableIndex.Param, EditAndContinueOperation.Default), 1651Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1652Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1653Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 1735Row(1, TableIndex.Event, EditAndContinueOperation.Default), 1736Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1737Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1738Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1739Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1740Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1741Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1742Row(7, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1743Row(8, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1744Row(9, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 1836Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 1837Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 1840Handle(2, TableIndex.TypeDef), 1841Handle(4, TableIndex.CustomAttribute)) 1857Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 1858Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1859Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 1862Handle(2, TableIndex.TypeDef), 1863Handle(4, TableIndex.CustomAttribute), 1864Handle(5, TableIndex.CustomAttribute)) 1971Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.Default), ' adding a type def 1972Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1973Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.Default), 1974Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1975Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1976Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 1977Row(baseParameterCount + generation * 2 - 1, TableIndex.Param, EditAndContinueOperation.Default), 1978Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 1979Row(baseParameterCount + generation * 2, TableIndex.Param, EditAndContinueOperation.Default), 1980If(hasAttribute, Row(baseAttributeCount + generation, TableIndex.CustomAttribute, EditAndContinueOperation.Default), Nothing)) ' adding a new attribute row for attribute on C#* definition 1983Handle(baseTypeCount + generation, TableIndex.TypeDef), 1984Handle(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef), 1985Handle(baseMethodCount + generation * 2, TableIndex.MethodDef), 1986Handle(baseParameterCount + generation * 2 - 1, TableIndex.Param), 1987Handle(baseParameterCount + generation * 2, TableIndex.Param), 1988If(hasAttribute, Handle(baseAttributeCount + generation, TableIndex.CustomAttribute), Nothing)) 2043Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 2044Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 2045Row(5, TableIndex.Param, EditAndContinueOperation.Default), 2046Row(6, TableIndex.Param, EditAndContinueOperation.Default), 2047Row(If(hasAttribute, 9, 8), TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 2050Handle(5, TableIndex.TypeDef), 2051Handle(8, TableIndex.MethodDef), 2052Handle(5, TableIndex.Param), 2053Handle(6, TableIndex.Param), 2054Handle(If(hasAttribute, 9, 8), TableIndex.CustomAttribute)) 2104Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 2105Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 2106Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 2107Row(9, TableIndex.MemberRef, EditAndContinueOperation.Default), 2108Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 2109Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 2110Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 2111Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2112Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) 2114Handle(8, TableIndex.TypeRef), 2115Handle(9, TableIndex.TypeRef), 2116Handle(10, TableIndex.TypeRef), 2117Handle(3, TableIndex.MethodDef), 2118Handle(8, TableIndex.MemberRef), 2119Handle(9, TableIndex.MemberRef), 2120Handle(2, TableIndex.StandAloneSig), 2121Handle(3, TableIndex.AssemblyRef), 2122Handle(4, TableIndex.AssemblyRef)) 2331Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2332Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), ' HotReloadException 2333Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2334Row(1, TableIndex.Field, EditAndContinueOperation.Default), ' HotReloadException.Code 2335Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), ' Action<int> get_P 2336Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), ' set_P(Action<int>) 2337Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), ' Action<bool> get_P 2338Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 2339Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), ' set_P(Action<bool>) 2340Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 2341Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2342Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), ' HotReloadException..ctor 2343Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), ' Action<bool> P 2344Row(2, TableIndex.Property, EditAndContinueOperation.Default), 2345Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 2346Row(2, TableIndex.Param, EditAndContinueOperation.Default), 2347Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), ' Action<bool> P <-> Action<bool> get_P 2348Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) ' Action<bool> P <-> set_P(Action<bool>) 2436Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2437Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), ' Action<bool> get_P 2438Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), ' set_P(Action<bool>) 2439Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), ' Action<int> get_P 2440Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), ' set_P(Action<int>) 2441Row(1, TableIndex.Property, EditAndContinueOperation.Default), ' Action<int> P 2442Row(1, TableIndex.Param, EditAndContinueOperation.Default), 2443Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), ' Action<int> P <-> Action<int> get_P 2444Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default) ' Action<int> P <-> set_P(Action<int>) 2534Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 2535Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2536Row(1, TableIndex.Field, EditAndContinueOperation.Default), 2537Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 2538Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 2539Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2540Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default) 2595Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2596Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default) 2665Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 2666Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2667Row(1, TableIndex.Field, EditAndContinueOperation.Default), 2668Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 2669Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2670Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default) 2725Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2726Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default) 6124Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6125Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6126Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6127Row(4, TableIndex.Field, EditAndContinueOperation.Default), 6128Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6129Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6130Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 6131Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6132Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 6137Handle(4, TableIndex.TypeDef), 6138Handle(4, TableIndex.Field), 6139Handle(2, TableIndex.MethodDef), 6140Handle(5, TableIndex.MethodDef), 6141Handle(6, TableIndex.MethodDef), 6142Handle(7, TableIndex.MethodDef), 6143Handle(2, TableIndex.StandAloneSig) 6238Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6239Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6240Row(3, TableIndex.Field, EditAndContinueOperation.Default), 6241Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6242Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6243Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6244Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default) 6249Handle(4, TableIndex.TypeDef), 6250Handle(3, TableIndex.Field), 6251Handle(2, TableIndex.MethodDef), 6252Handle(5, TableIndex.MethodDef), 6253Handle(6, TableIndex.MethodDef) 6315Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6316Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6317Row(4, TableIndex.Field, EditAndContinueOperation.Default), 6318Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6319Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 6320Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6321Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 6326Handle(4, TableIndex.Field), 6327Handle(2, TableIndex.MethodDef), 6328Handle(3, TableIndex.MethodDef), 6329Handle(7, TableIndex.MethodDef), 6330Handle(2, TableIndex.StandAloneSig) 6399Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6400Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 6405Handle(2, TableIndex.MethodDef), 6406Handle(7, TableIndex.MethodDef) 6497Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6498Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6499Row(3, TableIndex.Field, EditAndContinueOperation.Default), 6500Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6501Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6502Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6503Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default) 6507Handle(4, TableIndex.TypeDef), 6508Handle(3, TableIndex.Field), 6509Handle(2, TableIndex.MethodDef), 6510Handle(5, TableIndex.MethodDef), 6511Handle(6, TableIndex.MethodDef) 6637Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 6638Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6639Row(5, TableIndex.Field, EditAndContinueOperation.Default), 6640Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 6641Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 6642Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 6643Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 6644Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6645Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default) 6650Handle(5, TableIndex.TypeDef), 6651Handle(5, TableIndex.Field), 6652Handle(3, TableIndex.MethodDef), 6653Handle(6, TableIndex.MethodDef), 6654Handle(7, TableIndex.MethodDef), 6655Handle(8, TableIndex.MethodDef), 6656Handle(9, TableIndex.MethodDef) 6795Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 6796Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default) 6801Handle(3, TableIndex.MethodDef), 6802Handle(12, TableIndex.MethodDef) 7456Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 7457Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7458Row(1, TableIndex.Field, EditAndContinueOperation.Default), 7459Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7460Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7461Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default) 7466Handle(3, TableIndex.TypeDef), 7467Handle(1, TableIndex.Field), 7468Handle(2, TableIndex.MethodDef), 7469Handle(3, TableIndex.MethodDef) 7662Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 7667Handle(1, TableIndex.MethodDef) 7762Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 7763Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 7764Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7765Row(3, TableIndex.Field, EditAndContinueOperation.Default), 7766Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7767Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7768Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 7769Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default), 7770Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 7775Handle(5, TableIndex.TypeDef), 7776Handle(6, TableIndex.TypeDef), 7777Handle(3, TableIndex.Field), 7778Handle(1, TableIndex.MethodDef), 7779Handle(5, TableIndex.CustomAttribute), 7780Handle(2, TableIndex.ClassLayout), 7781Handle(2, TableIndex.FieldRva), 7782Handle(2, TableIndex.NestedClass) 7884Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7885Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7886Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 7887Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7888Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7889Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7890Row(1, TableIndex.Param, EditAndContinueOperation.Default), 7891Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7892Row(3, TableIndex.Param, EditAndContinueOperation.Default), 7893Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 7898Handle(4, TableIndex.TypeDef), 7899Handle(2, TableIndex.MethodDef), 7900Handle(4, TableIndex.MethodDef), 7901Handle(1, TableIndex.Param), 7902Handle(3, TableIndex.Param), 7903Handle(5, TableIndex.CustomAttribute), 7904Handle(3, TableIndex.StandAloneSig), 7905Handle(4, TableIndex.StandAloneSig)
Emit\EmitMetadata.vb (3)
288Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.File)) 289Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 323Assert.Equal(2, reader.GetTableRowCount(TableIndex.File))
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (4)
Semantics\FieldInitializerBindingTests.vb (4)
900Assert.Equal(6, reader.GetTableRowCount(TableIndex.Constant)) 968Assert.Equal(10, reader.GetTableRowCount(TableIndex.Constant)) 1306Assert.Equal(FIELD_COUNT - ATTR_CONST_COUNT + ENUM_CONST_COUNT, reader.GetTableRowCount(TableIndex.Constant)) 1307Assert.Equal(FIELD_COUNT, reader.GetTableRowCount(TableIndex.Param))
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (9)
SymbolsTests\Metadata\PE\TypeForwarders.vb (9)
1024Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)) 1065Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1073Assert.Equal(0, peReader1.GetTableRowCount(TableIndex.ExportedType)) 1118Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1128Assert.Equal(1, metadataReader1.GetTableRowCount(TableIndex.ExportedType)) 1178Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1187Assert.Equal(0, metadataReader1.GetTableRowCount(TableIndex.ExportedType)) 1198Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1307Assert.Equal(2, peReader1.GetTableRowCount(TableIndex.ExportedType))
Microsoft.DotNet.Build.Tasks.Packaging (1)
GetAssemblyReferences.cs (1)
69for (int i = 1, count = reader.GetTableRowCount(TableIndex.ModuleRef); i <= count; i++)
Microsoft.DotNet.GenFacades (3)
ClearAssemblyReferenceVersions.cs (3)
36int assemblyRefOffset = mdReader.GetTableMetadataOffset(TableIndex.AssemblyRef); 37int numAssemblyRef = mdReader.GetTableRowCount(TableIndex.AssemblyRef); 38int sizeAssemblyRefRow = mdReader.GetTableRowSize(TableIndex.AssemblyRef);
Microsoft.DotNet.PackageTesting (2)
VerifyClosure.cs (2)
457var count = reader.GetTableRowCount(TableIndex.AssemblyRef); 471var count = reader.GetTableRowCount(TableIndex.ModuleRef);
Microsoft.DotNet.SharedFramework.Sdk (2)
src\Microsoft.DotNet.PackageTesting\VerifyClosure.cs (2)
457var count = reader.GetTableRowCount(TableIndex.AssemblyRef); 471var count = reader.GetTableRowCount(TableIndex.ModuleRef);
Roslyn.Test.PdbUtilities (4)
EditAndContinue\EditAndContinueTest.GenerationVerifier.cs (1)
75internal void VerifyTableSize(TableIndex table, int expected)
EditAndContinue\EditAndContinueTestUtilities.cs (3)
40TableIndex tableIndex; 52TableIndex tableIndex; 63TableIndex parentTableIndex, constructorTableIndex;
SemanticSearch.BuildTask (6)
GenerateFilteredReferenceAssembliesTask.cs (6)
439var tableOffset = metadataOffset + metadataReader.GetTableMetadataOffset(TableIndex.TypeDef); 440var tableRowSize = metadataReader.GetTableRowSize(TableIndex.TypeDef); 479var tableOffset = metadataOffset + metadataReader.GetTableMetadataOffset(TableIndex.MethodDef); 480var tableRowSize = metadataReader.GetTableRowSize(TableIndex.MethodDef); 513var tableOffset = metadataOffset + metadataReader.GetTableMetadataOffset(TableIndex.Field); 514var tableRowSize = metadataReader.GetTableRowSize(TableIndex.Field);
System.Reflection.Emit (2)
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
443AddLocalScope(methodHandle, parentImport: default, MetadataTokens.LocalVariableHandle(_pdbBuilder.GetRowCount(TableIndex.LocalVariable) + 1), scope); 524AddLocalScope(methodHandle, parentImport, MetadataTokens.LocalVariableHandle(_pdbBuilder.GetRowCount(TableIndex.LocalVariable) + 1), childScope);
System.Reflection.Metadata (692)
System\Reflection\Metadata\Ecma335\MetadataAggregator.cs (3)
61if (baseReader.GetTableRowCount(TableIndex.EncMap) != 0) 94if (deltaReaders[i].GetTableRowCount(TableIndex.EncMap) == 0 || !deltaReaders[i].IsMinimalDelta) 121rowCounts[i] = baseReader.GetTableRowCount((TableIndex)i);
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (208)
138public void SetCapacity(TableIndex table, int rowCount) 147case TableIndex.Module: break; // no-op, max row count is 1 148case TableIndex.TypeRef: SetTableCapacity(_typeRefTable, rowCount); break; 149case TableIndex.TypeDef: SetTableCapacity(_typeDefTable, rowCount); break; 150case TableIndex.Field: SetTableCapacity(_fieldTable, rowCount); break; 151case TableIndex.MethodDef: SetTableCapacity(_methodDefTable, rowCount); break; 152case TableIndex.Param: SetTableCapacity(_paramTable, rowCount); break; 153case TableIndex.InterfaceImpl: SetTableCapacity(_interfaceImplTable, rowCount); break; 154case TableIndex.MemberRef: SetTableCapacity(_memberRefTable, rowCount); break; 155case TableIndex.Constant: SetTableCapacity(_constantTable, rowCount); break; 156case TableIndex.CustomAttribute: SetTableCapacity(_customAttributeTable, rowCount); break; 157case TableIndex.FieldMarshal: SetTableCapacity(_fieldMarshalTable, rowCount); break; 158case TableIndex.DeclSecurity: SetTableCapacity(_declSecurityTable, rowCount); break; 159case TableIndex.ClassLayout: SetTableCapacity(_classLayoutTable, rowCount); break; 160case TableIndex.FieldLayout: SetTableCapacity(_fieldLayoutTable, rowCount); break; 161case TableIndex.StandAloneSig: SetTableCapacity(_standAloneSigTable, rowCount); break; 162case TableIndex.EventMap: SetTableCapacity(_eventMapTable, rowCount); break; 163case TableIndex.Event: SetTableCapacity(_eventTable, rowCount); break; 164case TableIndex.PropertyMap: SetTableCapacity(_propertyMapTable, rowCount); break; 165case TableIndex.Property: SetTableCapacity(_propertyTable, rowCount); break; 166case TableIndex.MethodSemantics: SetTableCapacity(_methodSemanticsTable, rowCount); break; 167case TableIndex.MethodImpl: SetTableCapacity(_methodImplTable, rowCount); break; 168case TableIndex.ModuleRef: SetTableCapacity(_moduleRefTable, rowCount); break; 169case TableIndex.TypeSpec: SetTableCapacity(_typeSpecTable, rowCount); break; 170case TableIndex.ImplMap: SetTableCapacity(_implMapTable, rowCount); break; 171case TableIndex.FieldRva: SetTableCapacity(_fieldRvaTable, rowCount); break; 172case TableIndex.EncLog: SetTableCapacity(_encLogTable, rowCount); break; 173case TableIndex.EncMap: SetTableCapacity(_encMapTable, rowCount); break; 174case TableIndex.Assembly: break; // no-op, max row count is 1 175case TableIndex.AssemblyRef: SetTableCapacity(_assemblyRefTable, rowCount); break; 176case TableIndex.File: SetTableCapacity(_fileTable, rowCount); break; 177case TableIndex.ExportedType: SetTableCapacity(_exportedTypeTable, rowCount); break; 178case TableIndex.ManifestResource: SetTableCapacity(_manifestResourceTable, rowCount); break; 179case TableIndex.NestedClass: SetTableCapacity(_nestedClassTable, rowCount); break; 180case TableIndex.GenericParam: SetTableCapacity(_genericParamTable, rowCount); break; 181case TableIndex.MethodSpec: SetTableCapacity(_methodSpecTable, rowCount); break; 182case TableIndex.GenericParamConstraint: SetTableCapacity(_genericParamConstraintTable, rowCount); break; 183case TableIndex.Document: SetTableCapacity(_documentTable, rowCount); break; 184case TableIndex.MethodDebugInformation: SetTableCapacity(_methodDebugInformationTable, rowCount); break; 185case TableIndex.LocalScope: SetTableCapacity(_localScopeTable, rowCount); break; 186case TableIndex.LocalVariable: SetTableCapacity(_localVariableTable, rowCount); break; 187case TableIndex.LocalConstant: SetTableCapacity(_localConstantTable, rowCount); break; 188case TableIndex.ImportScope: SetTableCapacity(_importScopeTable, rowCount); break; 189case TableIndex.StateMachineMethod: SetTableCapacity(_stateMachineMethodTable, rowCount); break; 190case TableIndex.CustomDebugInformation: SetTableCapacity(_customDebugInformationTable, rowCount); break; 192case TableIndex.AssemblyOS: 193case TableIndex.AssemblyProcessor: 194case TableIndex.AssemblyRefOS: 195case TableIndex.AssemblyRefProcessor: 196case TableIndex.EventPtr: 197case TableIndex.FieldPtr: 198case TableIndex.MethodPtr: 199case TableIndex.ParamPtr: 200case TableIndex.PropertyPtr: 223public int GetRowCount(TableIndex table) 227case TableIndex.Assembly : return _assemblyRow.HasValue ? 1 : 0; 228case TableIndex.AssemblyRef : return _assemblyRefTable.Count; 229case TableIndex.ClassLayout : return _classLayoutTable.Count; 230case TableIndex.Constant : return _constantTable.Count; 231case TableIndex.CustomAttribute : return _customAttributeTable.Count; 232case TableIndex.DeclSecurity : return _declSecurityTable.Count; 233case TableIndex.EncLog : return _encLogTable.Count; 234case TableIndex.EncMap : return _encMapTable.Count; 235case TableIndex.EventMap : return _eventMapTable.Count; 236case TableIndex.Event : return _eventTable.Count; 237case TableIndex.ExportedType : return _exportedTypeTable.Count; 238case TableIndex.FieldLayout : return _fieldLayoutTable.Count; 239case TableIndex.FieldMarshal : return _fieldMarshalTable.Count; 240case TableIndex.FieldRva : return _fieldRvaTable.Count; 241case TableIndex.Field : return _fieldTable.Count; 242case TableIndex.File : return _fileTable.Count; 243case TableIndex.GenericParamConstraint : return _genericParamConstraintTable.Count; 244case TableIndex.GenericParam : return _genericParamTable.Count; 245case TableIndex.ImplMap : return _implMapTable.Count; 246case TableIndex.InterfaceImpl : return _interfaceImplTable.Count; 247case TableIndex.ManifestResource : return _manifestResourceTable.Count; 248case TableIndex.MemberRef : return _memberRefTable.Count; 249case TableIndex.MethodImpl : return _methodImplTable.Count; 250case TableIndex.MethodSemantics : return _methodSemanticsTable.Count; 251case TableIndex.MethodSpec : return _methodSpecTable.Count; 252case TableIndex.MethodDef : return _methodDefTable.Count; 253case TableIndex.ModuleRef : return _moduleRefTable.Count; 254case TableIndex.Module : return _moduleRow.HasValue ? 1 : 0; 255case TableIndex.NestedClass : return _nestedClassTable.Count; 256case TableIndex.Param : return _paramTable.Count; 257case TableIndex.PropertyMap : return _propertyMapTable.Count; 258case TableIndex.Property : return _propertyTable.Count; 259case TableIndex.StandAloneSig : return _standAloneSigTable.Count; 260case TableIndex.TypeDef : return _typeDefTable.Count; 261case TableIndex.TypeRef : return _typeRefTable.Count; 262case TableIndex.TypeSpec : return _typeSpecTable.Count; 263case TableIndex.Document : return _documentTable.Count; 264case TableIndex.MethodDebugInformation : return _methodDebugInformationTable.Count; 265case TableIndex.LocalScope : return _localScopeTable.Count; 266case TableIndex.LocalVariable : return _localVariableTable.Count; 267case TableIndex.LocalConstant : return _localConstantTable.Count; 268case TableIndex.StateMachineMethod : return _stateMachineMethodTable.Count; 269case TableIndex.ImportScope : return _importScopeTable.Count; 270case TableIndex.CustomDebugInformation : return _customDebugInformationTable.Count; 272case TableIndex.AssemblyOS: 273case TableIndex.AssemblyProcessor: 274case TableIndex.AssemblyRefOS: 275case TableIndex.AssemblyRefProcessor: 276case TableIndex.EventPtr: 277case TableIndex.FieldPtr: 278case TableIndex.MethodPtr: 279case TableIndex.ParamPtr: 280case TableIndex.PropertyPtr: 299rowCounts[(int)TableIndex.Assembly] = _assemblyRow.HasValue ? 1 : 0; 300rowCounts[(int)TableIndex.AssemblyRef] = _assemblyRefTable.Count; 301rowCounts[(int)TableIndex.ClassLayout] = _classLayoutTable.Count; 302rowCounts[(int)TableIndex.Constant] = _constantTable.Count; 303rowCounts[(int)TableIndex.CustomAttribute] = _customAttributeTable.Count; 304rowCounts[(int)TableIndex.DeclSecurity] = _declSecurityTable.Count; 305rowCounts[(int)TableIndex.EncLog] = _encLogTable.Count; 306rowCounts[(int)TableIndex.EncMap] = _encMapTable.Count; 307rowCounts[(int)TableIndex.EventMap] = _eventMapTable.Count; 308rowCounts[(int)TableIndex.Event] = _eventTable.Count; 309rowCounts[(int)TableIndex.ExportedType] = _exportedTypeTable.Count; 310rowCounts[(int)TableIndex.FieldLayout] = _fieldLayoutTable.Count; 311rowCounts[(int)TableIndex.FieldMarshal] = _fieldMarshalTable.Count; 312rowCounts[(int)TableIndex.FieldRva] = _fieldRvaTable.Count; 313rowCounts[(int)TableIndex.Field] = _fieldTable.Count; 314rowCounts[(int)TableIndex.File] = _fileTable.Count; 315rowCounts[(int)TableIndex.GenericParamConstraint] = _genericParamConstraintTable.Count; 316rowCounts[(int)TableIndex.GenericParam] = _genericParamTable.Count; 317rowCounts[(int)TableIndex.ImplMap] = _implMapTable.Count; 318rowCounts[(int)TableIndex.InterfaceImpl] = _interfaceImplTable.Count; 319rowCounts[(int)TableIndex.ManifestResource] = _manifestResourceTable.Count; 320rowCounts[(int)TableIndex.MemberRef] = _memberRefTable.Count; 321rowCounts[(int)TableIndex.MethodImpl] = _methodImplTable.Count; 322rowCounts[(int)TableIndex.MethodSemantics] = _methodSemanticsTable.Count; 323rowCounts[(int)TableIndex.MethodSpec] = _methodSpecTable.Count; 324rowCounts[(int)TableIndex.MethodDef] = _methodDefTable.Count; 325rowCounts[(int)TableIndex.ModuleRef] = _moduleRefTable.Count; 326rowCounts[(int)TableIndex.Module] = _moduleRow.HasValue ? 1 : 0; 327rowCounts[(int)TableIndex.NestedClass] = _nestedClassTable.Count; 328rowCounts[(int)TableIndex.Param] = _paramTable.Count; 329rowCounts[(int)TableIndex.PropertyMap] = _propertyMapTable.Count; 330rowCounts[(int)TableIndex.Property] = _propertyTable.Count; 331rowCounts[(int)TableIndex.StandAloneSig] = _standAloneSigTable.Count; 332rowCounts[(int)TableIndex.TypeDef] = _typeDefTable.Count; 333rowCounts[(int)TableIndex.TypeRef] = _typeRefTable.Count; 334rowCounts[(int)TableIndex.TypeSpec] = _typeSpecTable.Count; 336rowCounts[(int)TableIndex.Document] = _documentTable.Count; 337rowCounts[(int)TableIndex.MethodDebugInformation] = _methodDebugInformationTable.Count; 338rowCounts[(int)TableIndex.LocalScope] = _localScopeTable.Count; 339rowCounts[(int)TableIndex.LocalVariable] = _localVariableTable.Count; 340rowCounts[(int)TableIndex.LocalConstant] = _localConstantTable.Count; 341rowCounts[(int)TableIndex.StateMachineMethod] = _stateMachineMethodTable.Count; 342rowCounts[(int)TableIndex.ImportScope] = _importScopeTable.Count; 343rowCounts[(int)TableIndex.CustomDebugInformation] = _customDebugInformationTable.Count; 1476Throw.InvalidOperation_TableNotSorted(TableIndex.ClassLayout); 1487Throw.InvalidOperation_TableNotSorted(TableIndex.FieldLayout); 1499Throw.InvalidOperation_TableNotSorted(TableIndex.FieldRva); 1526Throw.InvalidOperation_TableNotSorted(TableIndex.GenericParam); 1536Throw.InvalidOperation_TableNotSorted(TableIndex.GenericParamConstraint); 1547Throw.InvalidOperation_TableNotSorted(TableIndex.ImplMap); 1558Throw.InvalidOperation_TableNotSorted(TableIndex.InterfaceImpl); 1569Throw.InvalidOperation_TableNotSorted(TableIndex.MethodImpl); 1580Throw.InvalidOperation_TableNotSorted(TableIndex.NestedClass); 1617Throw.InvalidOperation_TableNotSorted(TableIndex.LocalScope); 1627Throw.InvalidOperation_TableNotSorted(TableIndex.StateMachineMethod); 1647if (metadataSizes.IsPresent(TableIndex.Module)) 1652if (metadataSizes.IsPresent(TableIndex.TypeRef)) 1657if (metadataSizes.IsPresent(TableIndex.TypeDef)) 1662if (metadataSizes.IsPresent(TableIndex.Field)) 1667if (metadataSizes.IsPresent(TableIndex.MethodDef)) 1672if (metadataSizes.IsPresent(TableIndex.Param)) 1677if (metadataSizes.IsPresent(TableIndex.InterfaceImpl)) 1682if (metadataSizes.IsPresent(TableIndex.MemberRef)) 1687if (metadataSizes.IsPresent(TableIndex.Constant)) 1692if (metadataSizes.IsPresent(TableIndex.CustomAttribute)) 1697if (metadataSizes.IsPresent(TableIndex.FieldMarshal)) 1702if (metadataSizes.IsPresent(TableIndex.DeclSecurity)) 1707if (metadataSizes.IsPresent(TableIndex.ClassLayout)) 1712if (metadataSizes.IsPresent(TableIndex.FieldLayout)) 1717if (metadataSizes.IsPresent(TableIndex.StandAloneSig)) 1722if (metadataSizes.IsPresent(TableIndex.EventMap)) 1727if (metadataSizes.IsPresent(TableIndex.Event)) 1732if (metadataSizes.IsPresent(TableIndex.PropertyMap)) 1737if (metadataSizes.IsPresent(TableIndex.Property)) 1742if (metadataSizes.IsPresent(TableIndex.MethodSemantics)) 1747if (metadataSizes.IsPresent(TableIndex.MethodImpl)) 1752if (metadataSizes.IsPresent(TableIndex.ModuleRef)) 1757if (metadataSizes.IsPresent(TableIndex.TypeSpec)) 1762if (metadataSizes.IsPresent(TableIndex.ImplMap)) 1767if (metadataSizes.IsPresent(TableIndex.FieldRva)) 1772if (metadataSizes.IsPresent(TableIndex.EncLog)) 1777if (metadataSizes.IsPresent(TableIndex.EncMap)) 1782if (metadataSizes.IsPresent(TableIndex.Assembly)) 1787if (metadataSizes.IsPresent(TableIndex.AssemblyRef)) 1792if (metadataSizes.IsPresent(TableIndex.File)) 1797if (metadataSizes.IsPresent(TableIndex.ExportedType)) 1802if (metadataSizes.IsPresent(TableIndex.ManifestResource)) 1807if (metadataSizes.IsPresent(TableIndex.NestedClass)) 1812if (metadataSizes.IsPresent(TableIndex.GenericParam)) 1817if (metadataSizes.IsPresent(TableIndex.MethodSpec)) 1822if (metadataSizes.IsPresent(TableIndex.GenericParamConstraint)) 1828if (metadataSizes.IsPresent(TableIndex.Document)) 1833if (metadataSizes.IsPresent(TableIndex.MethodDebugInformation)) 1838if (metadataSizes.IsPresent(TableIndex.LocalScope)) 1843if (metadataSizes.IsPresent(TableIndex.LocalVariable)) 1848if (metadataSizes.IsPresent(TableIndex.LocalConstant)) 1853if (metadataSizes.IsPresent(TableIndex.ImportScope)) 1858if (metadataSizes.IsPresent(TableIndex.StateMachineMethod)) 1863if (metadataSizes.IsPresent(TableIndex.CustomDebugInformation)) 1902metadataSizes.IsEncDelta ? MetadataSizes.SortedTypeSystemTables & ~(1UL << (int)TableIndex.CustomAttribute) :
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (110)
20public static int GetTableRowCount(this MetadataReader reader, TableIndex tableIndex) 40public static int GetTableRowSize(this MetadataReader reader, TableIndex tableIndex) 49TableIndex.Module => reader.ModuleTable.RowSize, 50TableIndex.TypeRef => reader.TypeRefTable.RowSize, 51TableIndex.TypeDef => reader.TypeDefTable.RowSize, 52TableIndex.FieldPtr => reader.FieldPtrTable.RowSize, 53TableIndex.Field => reader.FieldTable.RowSize, 54TableIndex.MethodPtr => reader.MethodPtrTable.RowSize, 55TableIndex.MethodDef => reader.MethodDefTable.RowSize, 56TableIndex.ParamPtr => reader.ParamPtrTable.RowSize, 57TableIndex.Param => reader.ParamTable.RowSize, 58TableIndex.InterfaceImpl => reader.InterfaceImplTable.RowSize, 59TableIndex.MemberRef => reader.MemberRefTable.RowSize, 60TableIndex.Constant => reader.ConstantTable.RowSize, 61TableIndex.CustomAttribute => reader.CustomAttributeTable.RowSize, 62TableIndex.FieldMarshal => reader.FieldMarshalTable.RowSize, 63TableIndex.DeclSecurity => reader.DeclSecurityTable.RowSize, 64TableIndex.ClassLayout => reader.ClassLayoutTable.RowSize, 65TableIndex.FieldLayout => reader.FieldLayoutTable.RowSize, 66TableIndex.StandAloneSig => reader.StandAloneSigTable.RowSize, 67TableIndex.EventMap => reader.EventMapTable.RowSize, 68TableIndex.EventPtr => reader.EventPtrTable.RowSize, 69TableIndex.Event => reader.EventTable.RowSize, 70TableIndex.PropertyMap => reader.PropertyMapTable.RowSize, 71TableIndex.PropertyPtr => reader.PropertyPtrTable.RowSize, 72TableIndex.Property => reader.PropertyTable.RowSize, 73TableIndex.MethodSemantics => reader.MethodSemanticsTable.RowSize, 74TableIndex.MethodImpl => reader.MethodImplTable.RowSize, 75TableIndex.ModuleRef => reader.ModuleRefTable.RowSize, 76TableIndex.TypeSpec => reader.TypeSpecTable.RowSize, 77TableIndex.ImplMap => reader.ImplMapTable.RowSize, 78TableIndex.FieldRva => reader.FieldRvaTable.RowSize, 79TableIndex.EncLog => reader.EncLogTable.RowSize, 80TableIndex.EncMap => reader.EncMapTable.RowSize, 81TableIndex.Assembly => reader.AssemblyTable.RowSize, 82TableIndex.AssemblyProcessor => reader.AssemblyProcessorTable.RowSize, 83TableIndex.AssemblyOS => reader.AssemblyOSTable.RowSize, 84TableIndex.AssemblyRef => reader.AssemblyRefTable.RowSize, 85TableIndex.AssemblyRefProcessor => reader.AssemblyRefProcessorTable.RowSize, 86TableIndex.AssemblyRefOS => reader.AssemblyRefOSTable.RowSize, 87TableIndex.File => reader.FileTable.RowSize, 88TableIndex.ExportedType => reader.ExportedTypeTable.RowSize, 89TableIndex.ManifestResource => reader.ManifestResourceTable.RowSize, 90TableIndex.NestedClass => reader.NestedClassTable.RowSize, 91TableIndex.GenericParam => reader.GenericParamTable.RowSize, 92TableIndex.MethodSpec => reader.MethodSpecTable.RowSize, 93TableIndex.GenericParamConstraint => reader.GenericParamConstraintTable.RowSize, 96TableIndex.Document => reader.DocumentTable.RowSize, 97TableIndex.MethodDebugInformation => reader.MethodDebugInformationTable.RowSize, 98TableIndex.LocalScope => reader.LocalScopeTable.RowSize, 99TableIndex.LocalVariable => reader.LocalVariableTable.RowSize, 100TableIndex.LocalConstant => reader.LocalConstantTable.RowSize, 101TableIndex.ImportScope => reader.ImportScopeTable.RowSize, 102TableIndex.StateMachineMethod => reader.StateMachineMethodTable.RowSize, 103TableIndex.CustomDebugInformation => reader.CustomDebugInformationTable.RowSize, 114public static unsafe int GetTableMetadataOffset(this MetadataReader reader, TableIndex tableIndex) 124private static MemoryBlock GetTableMetadataBlock(this MetadataReader reader, TableIndex tableIndex) 130TableIndex.Module => reader.ModuleTable.Block, 131TableIndex.TypeRef => reader.TypeRefTable.Block, 132TableIndex.TypeDef => reader.TypeDefTable.Block, 133TableIndex.FieldPtr => reader.FieldPtrTable.Block, 134TableIndex.Field => reader.FieldTable.Block, 135TableIndex.MethodPtr => reader.MethodPtrTable.Block, 136TableIndex.MethodDef => reader.MethodDefTable.Block, 137TableIndex.ParamPtr => reader.ParamPtrTable.Block, 138TableIndex.Param => reader.ParamTable.Block, 139TableIndex.InterfaceImpl => reader.InterfaceImplTable.Block, 140TableIndex.MemberRef => reader.MemberRefTable.Block, 141TableIndex.Constant => reader.ConstantTable.Block, 142TableIndex.CustomAttribute => reader.CustomAttributeTable.Block, 143TableIndex.FieldMarshal => reader.FieldMarshalTable.Block, 144TableIndex.DeclSecurity => reader.DeclSecurityTable.Block, 145TableIndex.ClassLayout => reader.ClassLayoutTable.Block, 146TableIndex.FieldLayout => reader.FieldLayoutTable.Block, 147TableIndex.StandAloneSig => reader.StandAloneSigTable.Block, 148TableIndex.EventMap => reader.EventMapTable.Block, 149TableIndex.EventPtr => reader.EventPtrTable.Block, 150TableIndex.Event => reader.EventTable.Block, 151TableIndex.PropertyMap => reader.PropertyMapTable.Block, 152TableIndex.PropertyPtr => reader.PropertyPtrTable.Block, 153TableIndex.Property => reader.PropertyTable.Block, 154TableIndex.MethodSemantics => reader.MethodSemanticsTable.Block, 155TableIndex.MethodImpl => reader.MethodImplTable.Block, 156TableIndex.ModuleRef => reader.ModuleRefTable.Block, 157TableIndex.TypeSpec => reader.TypeSpecTable.Block, 158TableIndex.ImplMap => reader.ImplMapTable.Block, 159TableIndex.FieldRva => reader.FieldRvaTable.Block, 160TableIndex.EncLog => reader.EncLogTable.Block, 161TableIndex.EncMap => reader.EncMapTable.Block, 162TableIndex.Assembly => reader.AssemblyTable.Block, 163TableIndex.AssemblyProcessor => reader.AssemblyProcessorTable.Block, 164TableIndex.AssemblyOS => reader.AssemblyOSTable.Block, 165TableIndex.AssemblyRef => reader.AssemblyRefTable.Block, 166TableIndex.AssemblyRefProcessor => reader.AssemblyRefProcessorTable.Block, 167TableIndex.AssemblyRefOS => reader.AssemblyRefOSTable.Block, 168TableIndex.File => reader.FileTable.Block, 169TableIndex.ExportedType => reader.ExportedTypeTable.Block, 170TableIndex.ManifestResource => reader.ManifestResourceTable.Block, 171TableIndex.NestedClass => reader.NestedClassTable.Block, 172TableIndex.GenericParam => reader.GenericParamTable.Block, 173TableIndex.MethodSpec => reader.MethodSpecTable.Block, 174TableIndex.GenericParamConstraint => reader.GenericParamConstraintTable.Block, 177TableIndex.Document => reader.DocumentTable.Block, 178TableIndex.MethodDebugInformation => reader.MethodDebugInformationTable.Block, 179TableIndex.LocalScope => reader.LocalScopeTable.Block, 180TableIndex.LocalVariable => reader.LocalVariableTable.Block, 181TableIndex.LocalConstant => reader.LocalConstantTable.Block, 182TableIndex.ImportScope => reader.ImportScopeTable.Block, 183TableIndex.StateMachineMethod => reader.StateMachineMethodTable.Block, 184TableIndex.CustomDebugInformation => reader.CustomDebugInformationTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (170)
231UL << (int)TableIndex.InterfaceImpl | 241UL << (int)TableIndex.Constant | 251UL << (int)TableIndex.CustomAttribute | 261UL << (int)TableIndex.FieldMarshal | 271UL << (int)TableIndex.DeclSecurity | 281UL << (int)TableIndex.ClassLayout | 291UL << (int)TableIndex.FieldLayout | 301UL << (int)TableIndex.MethodSemantics | 311UL << (int)TableIndex.MethodImpl | 321UL << (int)TableIndex.ImplMap | 331UL << (int)TableIndex.FieldRva | 341UL << (int)TableIndex.NestedClass | 351UL << (int)TableIndex.GenericParam | 361UL << (int)TableIndex.GenericParamConstraint; 391UL << (int)TableIndex.LocalScope | 401UL << (int)TableIndex.StateMachineMethod | 411UL << (int)TableIndex.CustomDebugInformation; 144bool isEncDelta = IsPresent(TableIndex.EncLog) || IsPresent(TableIndex.EncMap); 157CustomAttributeTypeCodedIndexIsSmall = IsReferenceSmall(3, TableIndex.MethodDef, TableIndex.MemberRef); 158DeclSecurityCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.MethodDef, TableIndex.TypeDef); 159EventDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.Event); 160FieldDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.Field); 161GenericParamReferenceIsSmall = IsReferenceSmall(0, TableIndex.GenericParam); 162HasConstantCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.Field, TableIndex.Param, TableIndex.Property); 165TableIndex.MethodDef, 166TableIndex.Field, 167TableIndex.TypeRef, 168TableIndex.TypeDef, 169TableIndex.Param, 170TableIndex.InterfaceImpl, 171TableIndex.MemberRef, 172TableIndex.Module, 173TableIndex.DeclSecurity, 174TableIndex.Property, 175TableIndex.Event, 176TableIndex.StandAloneSig, 177TableIndex.ModuleRef, 178TableIndex.TypeSpec, 179TableIndex.Assembly, 180TableIndex.AssemblyRef, 181TableIndex.File, 182TableIndex.ExportedType, 183TableIndex.ManifestResource, 184TableIndex.GenericParam, 185TableIndex.GenericParamConstraint, 186TableIndex.MethodSpec); 188HasFieldMarshalCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.Field, TableIndex.Param); 189HasSemanticsCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.Event, TableIndex.Property); 190ImplementationCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.File, TableIndex.AssemblyRef, TableIndex.ExportedType); 191MemberForwardedCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.Field, TableIndex.MethodDef); 192MemberRefParentCodedIndexIsSmall = IsReferenceSmall(3, TableIndex.TypeDef, TableIndex.TypeRef, TableIndex.ModuleRef, TableIndex.MethodDef, TableIndex.TypeSpec); 193MethodDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.MethodDef); 194MethodDefOrRefCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.MethodDef, TableIndex.MemberRef); 195ModuleRefReferenceIsSmall = IsReferenceSmall(0, TableIndex.ModuleRef); 196ParameterReferenceIsSmall = IsReferenceSmall(0, TableIndex.Param); 197PropertyDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.Property); 198ResolutionScopeCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.Module, TableIndex.ModuleRef, TableIndex.AssemblyRef, TableIndex.TypeRef); 199TypeDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.TypeDef); 200TypeDefOrRefCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.TypeDef, TableIndex.TypeRef, TableIndex.TypeSpec); 201TypeOrMethodDefCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.TypeDef, TableIndex.MethodDef); 203DocumentReferenceIsSmall = IsReferenceSmall(0, TableIndex.Document); 204LocalVariableReferenceIsSmall = IsReferenceSmall(0, TableIndex.LocalVariable); 205LocalConstantReferenceIsSmall = IsReferenceSmall(0, TableIndex.LocalConstant); 206ImportScopeReferenceIsSmall = IsReferenceSmall(0, TableIndex.ImportScope); 209TableIndex.MethodDef, 210TableIndex.Field, 211TableIndex.TypeRef, 212TableIndex.TypeDef, 213TableIndex.Param, 214TableIndex.InterfaceImpl, 215TableIndex.MemberRef, 216TableIndex.Module, 217TableIndex.DeclSecurity, 218TableIndex.Property, 219TableIndex.Event, 220TableIndex.StandAloneSig, 221TableIndex.ModuleRef, 222TableIndex.TypeSpec, 223TableIndex.Assembly, 224TableIndex.AssemblyRef, 225TableIndex.File, 226TableIndex.ExportedType, 227TableIndex.ManifestResource, 228TableIndex.GenericParam, 229TableIndex.GenericParamConstraint, 230TableIndex.MethodSpec, 231TableIndex.Document, 232TableIndex.LocalScope, 233TableIndex.LocalVariable, 234TableIndex.LocalConstant, 235TableIndex.ImportScope); 272size += GetTableSize(TableIndex.Module, 2 + 3 * guidReferenceSize + stringReferenceSize); 273size += GetTableSize(TableIndex.TypeRef, resolutionScopeCodedIndexSize + stringReferenceSize + stringReferenceSize); 274size += GetTableSize(TableIndex.TypeDef, 4 + stringReferenceSize + stringReferenceSize + typeDefOrRefCodedIndexSize + fieldDefReferenceSize + methodDefReferenceSize); 275Debug.Assert(rowCounts[(int)TableIndex.FieldPtr] == 0); 276size += GetTableSize(TableIndex.Field, 2 + stringReferenceSize + blobReferenceSize); 277Debug.Assert(rowCounts[(int)TableIndex.MethodPtr] == 0); 278size += GetTableSize(TableIndex.MethodDef, 8 + stringReferenceSize + blobReferenceSize + parameterReferenceSize); 279Debug.Assert(rowCounts[(int)TableIndex.ParamPtr] == 0); 280size += GetTableSize(TableIndex.Param, 4 + stringReferenceSize); 281size += GetTableSize(TableIndex.InterfaceImpl, typeDefReferenceSize + typeDefOrRefCodedIndexSize); 282size += GetTableSize(TableIndex.MemberRef, memberRefParentCodedIndexSize + stringReferenceSize + blobReferenceSize); 283size += GetTableSize(TableIndex.Constant, 2 + hasConstantCodedIndexSize + blobReferenceSize); 284size += GetTableSize(TableIndex.CustomAttribute, hasCustomAttributeCodedIndexSize + customAttributeTypeCodedIndexSize + blobReferenceSize); 285size += GetTableSize(TableIndex.FieldMarshal, hasFieldMarshalCodedIndexSize + blobReferenceSize); 286size += GetTableSize(TableIndex.DeclSecurity, 2 + declSecurityCodedIndexSize + blobReferenceSize); 287size += GetTableSize(TableIndex.ClassLayout, 6 + typeDefReferenceSize); 288size += GetTableSize(TableIndex.FieldLayout, 4 + fieldDefReferenceSize); 289size += GetTableSize(TableIndex.StandAloneSig, blobReferenceSize); 290size += GetTableSize(TableIndex.EventMap, typeDefReferenceSize + eventDefReferenceSize); 291Debug.Assert(rowCounts[(int)TableIndex.EventPtr] == 0); 292size += GetTableSize(TableIndex.Event, 2 + stringReferenceSize + typeDefOrRefCodedIndexSize); 293size += GetTableSize(TableIndex.PropertyMap, typeDefReferenceSize + propertyDefReferenceSize); 294Debug.Assert(rowCounts[(int)TableIndex.PropertyPtr] == 0); 295size += GetTableSize(TableIndex.Property, 2 + stringReferenceSize + blobReferenceSize); 296size += GetTableSize(TableIndex.MethodSemantics, 2 + methodDefReferenceSize + hasSemanticsCodedIndexSize); 297size += GetTableSize(TableIndex.MethodImpl, typeDefReferenceSize + methodDefOrRefCodedIndexSize + methodDefOrRefCodedIndexSize); 298size += GetTableSize(TableIndex.ModuleRef, stringReferenceSize); 299size += GetTableSize(TableIndex.TypeSpec, blobReferenceSize); 300size += GetTableSize(TableIndex.ImplMap, 2 + memberForwardedCodedIndexSize + stringReferenceSize + moduleRefReferenceSize); 301size += GetTableSize(TableIndex.FieldRva, 4 + fieldDefReferenceSize); 302size += GetTableSize(TableIndex.EncLog, 8); 303size += GetTableSize(TableIndex.EncMap, 4); 304size += GetTableSize(TableIndex.Assembly, 16 + blobReferenceSize + stringReferenceSize + stringReferenceSize); 305Debug.Assert(rowCounts[(int)TableIndex.AssemblyProcessor] == 0); 306Debug.Assert(rowCounts[(int)TableIndex.AssemblyOS] == 0); 307size += GetTableSize(TableIndex.AssemblyRef, 12 + blobReferenceSize + stringReferenceSize + stringReferenceSize + blobReferenceSize); 308Debug.Assert(rowCounts[(int)TableIndex.AssemblyRefProcessor] == 0); 309Debug.Assert(rowCounts[(int)TableIndex.AssemblyRefOS] == 0); 310size += GetTableSize(TableIndex.File, 4 + stringReferenceSize + blobReferenceSize); 311size += GetTableSize(TableIndex.ExportedType, 8 + stringReferenceSize + stringReferenceSize + implementationCodedIndexSize); 312size += GetTableSize(TableIndex.ManifestResource, 8 + stringReferenceSize + implementationCodedIndexSize); 313size += GetTableSize(TableIndex.NestedClass, typeDefReferenceSize + typeDefReferenceSize); 314size += GetTableSize(TableIndex.GenericParam, 4 + typeOrMethodDefCodedIndexSize + stringReferenceSize); 315size += GetTableSize(TableIndex.MethodSpec, methodDefOrRefCodedIndexSize + blobReferenceSize); 316size += GetTableSize(TableIndex.GenericParamConstraint, genericParamReferenceSize + typeDefOrRefCodedIndexSize); 318size += GetTableSize(TableIndex.Document, blobReferenceSize + guidReferenceSize + blobReferenceSize + guidReferenceSize); 319size += GetTableSize(TableIndex.MethodDebugInformation, documentReferenceSize + blobReferenceSize); 320size += GetTableSize(TableIndex.LocalScope, methodDefReferenceSize + importScopeReferenceSize + localVariableReferenceSize + localConstantReferenceSize + 4 + 4); 321size += GetTableSize(TableIndex.LocalVariable, 2 + 2 + stringReferenceSize); 322size += GetTableSize(TableIndex.LocalConstant, stringReferenceSize + blobReferenceSize); 323size += GetTableSize(TableIndex.ImportScope, importScopeReferenceSize + blobReferenceSize); 324size += GetTableSize(TableIndex.StateMachineMethod, methodDefReferenceSize + methodDefReferenceSize); 325size += GetTableSize(TableIndex.CustomDebugInformation, hasCustomDebugInformationCodedIndexSize + guidReferenceSize + blobReferenceSize); 345internal bool IsPresent(TableIndex table) => (PresentTablesMask & (1UL << (int)table)) != 0; 463private int GetTableSize(TableIndex index, int rowSize) 468private bool IsReferenceSmall(int tagBitSize, params TableIndex[] tables) 474private bool ReferenceFits(int bitCount, TableIndex[] tables) 477foreach (TableIndex table in tables)
System\Reflection\Metadata\Ecma335\MetadataTokens.cs (5)
228/// Gets the <see cref="TableIndex"/> of the table corresponding to the specified <see cref="HandleKind"/>. 233public static bool TryGetTableIndex(HandleKind type, out TableIndex index) 239index = (TableIndex)type; 318public static EntityHandle EntityHandle(TableIndex tableIndex, int rowNumber) 328public static EntityHandle Handle(TableIndex tableIndex, int rowNumber)
System\Reflection\Metadata\Ecma335\PortablePdbBuilder.cs (1)
34/// Each slot in the array corresponds to a table (<see cref="TableIndex"/>).
System\Reflection\Metadata\Internal\MetadataFlags.cs (86)
18Module = 1UL << TableIndex.Module, 19TypeRef = 1UL << TableIndex.TypeRef, 20TypeDef = 1UL << TableIndex.TypeDef, 21FieldPtr = 1UL << TableIndex.FieldPtr, 22Field = 1UL << TableIndex.Field, 23MethodPtr = 1UL << TableIndex.MethodPtr, 24MethodDef = 1UL << TableIndex.MethodDef, 25ParamPtr = 1UL << TableIndex.ParamPtr, 26Param = 1UL << TableIndex.Param, 27InterfaceImpl = 1UL << TableIndex.InterfaceImpl, 28MemberRef = 1UL << TableIndex.MemberRef, 29Constant = 1UL << TableIndex.Constant, 30CustomAttribute = 1UL << TableIndex.CustomAttribute, 31FieldMarshal = 1UL << TableIndex.FieldMarshal, 32DeclSecurity = 1UL << TableIndex.DeclSecurity, 33ClassLayout = 1UL << TableIndex.ClassLayout, 34FieldLayout = 1UL << TableIndex.FieldLayout, 35StandAloneSig = 1UL << TableIndex.StandAloneSig, 36EventMap = 1UL << TableIndex.EventMap, 37EventPtr = 1UL << TableIndex.EventPtr, 38Event = 1UL << TableIndex.Event, 39PropertyMap = 1UL << TableIndex.PropertyMap, 40PropertyPtr = 1UL << TableIndex.PropertyPtr, 41Property = 1UL << TableIndex.Property, 42MethodSemantics = 1UL << TableIndex.MethodSemantics, 43MethodImpl = 1UL << TableIndex.MethodImpl, 44ModuleRef = 1UL << TableIndex.ModuleRef, 45TypeSpec = 1UL << TableIndex.TypeSpec, 46ImplMap = 1UL << TableIndex.ImplMap, 47FieldRva = 1UL << TableIndex.FieldRva, 48EnCLog = 1UL << TableIndex.EncLog, 49EnCMap = 1UL << TableIndex.EncMap, 50Assembly = 1UL << TableIndex.Assembly, 53AssemblyRef = 1UL << TableIndex.AssemblyRef, 56File = 1UL << TableIndex.File, 57ExportedType = 1UL << TableIndex.ExportedType, 58ManifestResource = 1UL << TableIndex.ManifestResource, 59NestedClass = 1UL << TableIndex.NestedClass, 60GenericParam = 1UL << TableIndex.GenericParam, 61MethodSpec = 1UL << TableIndex.MethodSpec, 62GenericParamConstraint = 1UL << TableIndex.GenericParamConstraint, 64Document = 1UL << TableIndex.Document, 65MethodDebugInformation = 1UL << TableIndex.MethodDebugInformation, 66LocalScope = 1UL << TableIndex.LocalScope, 67LocalVariable = 1UL << TableIndex.LocalVariable, 68LocalConstant = 1UL << TableIndex.LocalConstant, 69ImportScope = 1UL << TableIndex.ImportScope, 70StateMachineMethod = 1UL << TableIndex.StateMachineMethod, 71CustomDebugInformation = 1UL << TableIndex.CustomDebugInformation, 203internal const uint Module = (uint)TableIndex.Module; 204internal const uint TypeRef = (uint)TableIndex.TypeRef; 205internal const uint TypeDef = (uint)TableIndex.TypeDef; 206internal const uint FieldDef = (uint)TableIndex.Field; 207internal const uint MethodDef = (uint)TableIndex.MethodDef; 208internal const uint ParamDef = (uint)TableIndex.Param; 209internal const uint InterfaceImpl = (uint)TableIndex.InterfaceImpl; 210internal const uint MemberRef = (uint)TableIndex.MemberRef; 211internal const uint Constant = (uint)TableIndex.Constant; 212internal const uint CustomAttribute = (uint)TableIndex.CustomAttribute; 213internal const uint DeclSecurity = (uint)TableIndex.DeclSecurity; 214internal const uint Signature = (uint)TableIndex.StandAloneSig; 215internal const uint EventMap = (uint)TableIndex.EventMap; 216internal const uint Event = (uint)TableIndex.Event; 217internal const uint PropertyMap = (uint)TableIndex.PropertyMap; 218internal const uint Property = (uint)TableIndex.Property; 219internal const uint MethodSemantics = (uint)TableIndex.MethodSemantics; 220internal const uint MethodImpl = (uint)TableIndex.MethodImpl; 221internal const uint ModuleRef = (uint)TableIndex.ModuleRef; 222internal const uint TypeSpec = (uint)TableIndex.TypeSpec; 223internal const uint Assembly = (uint)TableIndex.Assembly; 224internal const uint AssemblyRef = (uint)TableIndex.AssemblyRef; 225internal const uint File = (uint)TableIndex.File; 226internal const uint ExportedType = (uint)TableIndex.ExportedType; 227internal const uint ManifestResource = (uint)TableIndex.ManifestResource; 228internal const uint NestedClass = (uint)TableIndex.NestedClass; 229internal const uint GenericParam = (uint)TableIndex.GenericParam; 230internal const uint MethodSpec = (uint)TableIndex.MethodSpec; 231internal const uint GenericParamConstraint = (uint)TableIndex.GenericParamConstraint; 234internal const uint Document = (uint)TableIndex.Document; 235internal const uint MethodDebugInformation = (uint)TableIndex.MethodDebugInformation; 236internal const uint LocalScope = (uint)TableIndex.LocalScope; 237internal const uint LocalVariable = (uint)TableIndex.LocalVariable; 238internal const uint LocalConstant = (uint)TableIndex.LocalConstant; 239internal const uint ImportScope = (uint)TableIndex.ImportScope; 240internal const uint AsyncMethod = (uint)TableIndex.StateMachineMethod; 241internal const uint CustomDebugInformation = (uint)TableIndex.CustomDebugInformation;
System\Reflection\Metadata\Internal\Tables.cs (13)
581Throw.TableNotSorted(TableIndex.InterfaceImpl); 708Throw.TableNotSorted(TableIndex.Constant); 889Throw.TableNotSorted(TableIndex.FieldMarshal); 955Throw.TableNotSorted(TableIndex.DeclSecurity); 1035Throw.TableNotSorted(TableIndex.ClassLayout); 1099Throw.TableNotSorted(TableIndex.FieldLayout); 1503Throw.TableNotSorted(TableIndex.MethodSemantics); 1600Throw.TableNotSorted(TableIndex.MethodImpl); 1749Throw.TableNotSorted(TableIndex.ImplMap); 1818Throw.TableNotSorted(TableIndex.FieldRva); 2386Throw.TableNotSorted(TableIndex.NestedClass); 2458Throw.TableNotSorted(TableIndex.GenericParam); 2599Throw.TableNotSorted(TableIndex.GenericParamConstraint);
System\Reflection\Metadata\MetadataReader.cs (91)
372/// A row count for each possible table. May be indexed by <see cref="TableIndex"/>. 563private int GetReferenceSize(int[] rowCounts, TableIndex index) 577int fieldRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.FieldPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Field); 578int methodRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.MethodPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.MethodDef); 579int paramRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.ParamPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Param); 580int eventRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.EventPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Event); 581int propertyRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.PropertyPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Property); 605this.ModuleTable = new ModuleTableReader(rowCounts[(int)TableIndex.Module], stringHeapRefSize, guidHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 608this.TypeRefTable = new TypeRefTableReader(rowCounts[(int)TableIndex.TypeRef], resolutionScopeRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 611this.TypeDefTable = new TypeDefTableReader(rowCounts[(int)TableIndex.TypeDef], fieldRefSizeSorted, methodRefSizeSorted, typeDefOrRefRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 614this.FieldPtrTable = new FieldPtrTableReader(rowCounts[(int)TableIndex.FieldPtr], GetReferenceSize(rowCounts, TableIndex.Field), metadataTablesMemoryBlock, totalRequiredSize); 617this.FieldTable = new FieldTableReader(rowCounts[(int)TableIndex.Field], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 620this.MethodPtrTable = new MethodPtrTableReader(rowCounts[(int)TableIndex.MethodPtr], GetReferenceSize(rowCounts, TableIndex.MethodDef), metadataTablesMemoryBlock, totalRequiredSize); 623this.MethodDefTable = new MethodTableReader(rowCounts[(int)TableIndex.MethodDef], paramRefSizeSorted, stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 626this.ParamPtrTable = new ParamPtrTableReader(rowCounts[(int)TableIndex.ParamPtr], GetReferenceSize(rowCounts, TableIndex.Param), metadataTablesMemoryBlock, totalRequiredSize); 629this.ParamTable = new ParamTableReader(rowCounts[(int)TableIndex.Param], stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 632this.InterfaceImplTable = new InterfaceImplTableReader(rowCounts[(int)TableIndex.InterfaceImpl], IsDeclaredSorted(TableMask.InterfaceImpl), GetReferenceSize(rowCounts, TableIndex.TypeDef), typeDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize); 635this.MemberRefTable = new MemberRefTableReader(rowCounts[(int)TableIndex.MemberRef], memberRefParentRefSize, stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 638this.ConstantTable = new ConstantTableReader(rowCounts[(int)TableIndex.Constant], IsDeclaredSorted(TableMask.Constant), hasConstantRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 641this.CustomAttributeTable = new CustomAttributeTableReader(rowCounts[(int)TableIndex.CustomAttribute], 650this.FieldMarshalTable = new FieldMarshalTableReader(rowCounts[(int)TableIndex.FieldMarshal], IsDeclaredSorted(TableMask.FieldMarshal), hasFieldMarshalRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 653this.DeclSecurityTable = new DeclSecurityTableReader(rowCounts[(int)TableIndex.DeclSecurity], IsDeclaredSorted(TableMask.DeclSecurity), hasDeclSecurityRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 656this.ClassLayoutTable = new ClassLayoutTableReader(rowCounts[(int)TableIndex.ClassLayout], IsDeclaredSorted(TableMask.ClassLayout), GetReferenceSize(rowCounts, TableIndex.TypeDef), metadataTablesMemoryBlock, totalRequiredSize); 659this.FieldLayoutTable = new FieldLayoutTableReader(rowCounts[(int)TableIndex.FieldLayout], IsDeclaredSorted(TableMask.FieldLayout), GetReferenceSize(rowCounts, TableIndex.Field), metadataTablesMemoryBlock, totalRequiredSize); 662this.StandAloneSigTable = new StandAloneSigTableReader(rowCounts[(int)TableIndex.StandAloneSig], blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 665this.EventMapTable = new EventMapTableReader(rowCounts[(int)TableIndex.EventMap], GetReferenceSize(rowCounts, TableIndex.TypeDef), eventRefSizeSorted, metadataTablesMemoryBlock, totalRequiredSize); 668this.EventPtrTable = new EventPtrTableReader(rowCounts[(int)TableIndex.EventPtr], GetReferenceSize(rowCounts, TableIndex.Event), metadataTablesMemoryBlock, totalRequiredSize); 671this.EventTable = new EventTableReader(rowCounts[(int)TableIndex.Event], typeDefOrRefRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 674this.PropertyMapTable = new PropertyMapTableReader(rowCounts[(int)TableIndex.PropertyMap], GetReferenceSize(rowCounts, TableIndex.TypeDef), propertyRefSizeSorted, metadataTablesMemoryBlock, totalRequiredSize); 677this.PropertyPtrTable = new PropertyPtrTableReader(rowCounts[(int)TableIndex.PropertyPtr], GetReferenceSize(rowCounts, TableIndex.Property), metadataTablesMemoryBlock, totalRequiredSize); 680this.PropertyTable = new PropertyTableReader(rowCounts[(int)TableIndex.Property], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 683this.MethodSemanticsTable = new MethodSemanticsTableReader(rowCounts[(int)TableIndex.MethodSemantics], IsDeclaredSorted(TableMask.MethodSemantics), GetReferenceSize(rowCounts, TableIndex.MethodDef), hasSemanticsRefSize, metadataTablesMemoryBlock, totalRequiredSize); 686this.MethodImplTable = new MethodImplTableReader(rowCounts[(int)TableIndex.MethodImpl], IsDeclaredSorted(TableMask.MethodImpl), GetReferenceSize(rowCounts, TableIndex.TypeDef), methodDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize); 689this.ModuleRefTable = new ModuleRefTableReader(rowCounts[(int)TableIndex.ModuleRef], stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 692this.TypeSpecTable = new TypeSpecTableReader(rowCounts[(int)TableIndex.TypeSpec], blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 695this.ImplMapTable = new ImplMapTableReader(rowCounts[(int)TableIndex.ImplMap], IsDeclaredSorted(TableMask.ImplMap), GetReferenceSize(rowCounts, TableIndex.ModuleRef), memberForwardedRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 698this.FieldRvaTable = new FieldRVATableReader(rowCounts[(int)TableIndex.FieldRva], IsDeclaredSorted(TableMask.FieldRva), GetReferenceSize(rowCounts, TableIndex.Field), metadataTablesMemoryBlock, totalRequiredSize); 701this.EncLogTable = new EnCLogTableReader(rowCounts[(int)TableIndex.EncLog], metadataTablesMemoryBlock, totalRequiredSize, _metadataStreamKind); 704this.EncMapTable = new EnCMapTableReader(rowCounts[(int)TableIndex.EncMap], metadataTablesMemoryBlock, totalRequiredSize); 707this.AssemblyTable = new AssemblyTableReader(rowCounts[(int)TableIndex.Assembly], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 710this.AssemblyProcessorTable = new AssemblyProcessorTableReader(rowCounts[(int)TableIndex.AssemblyProcessor], metadataTablesMemoryBlock, totalRequiredSize); 713this.AssemblyOSTable = new AssemblyOSTableReader(rowCounts[(int)TableIndex.AssemblyOS], metadataTablesMemoryBlock, totalRequiredSize); 716this.AssemblyRefTable = new AssemblyRefTableReader(rowCounts[(int)TableIndex.AssemblyRef], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize, _metadataKind); 719this.AssemblyRefProcessorTable = new AssemblyRefProcessorTableReader(rowCounts[(int)TableIndex.AssemblyRefProcessor], GetReferenceSize(rowCounts, TableIndex.AssemblyRef), metadataTablesMemoryBlock, totalRequiredSize); 722this.AssemblyRefOSTable = new AssemblyRefOSTableReader(rowCounts[(int)TableIndex.AssemblyRefOS], GetReferenceSize(rowCounts, TableIndex.AssemblyRef), metadataTablesMemoryBlock, totalRequiredSize); 725this.FileTable = new FileTableReader(rowCounts[(int)TableIndex.File], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 728this.ExportedTypeTable = new ExportedTypeTableReader(rowCounts[(int)TableIndex.ExportedType], implementationRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 731this.ManifestResourceTable = new ManifestResourceTableReader(rowCounts[(int)TableIndex.ManifestResource], implementationRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 734this.NestedClassTable = new NestedClassTableReader(rowCounts[(int)TableIndex.NestedClass], IsDeclaredSorted(TableMask.NestedClass), GetReferenceSize(rowCounts, TableIndex.TypeDef), metadataTablesMemoryBlock, totalRequiredSize); 737this.GenericParamTable = new GenericParamTableReader(rowCounts[(int)TableIndex.GenericParam], IsDeclaredSorted(TableMask.GenericParam), typeOrMethodDefRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 740this.MethodSpecTable = new MethodSpecTableReader(rowCounts[(int)TableIndex.MethodSpec], methodDefOrRefRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 743this.GenericParamConstraintTable = new GenericParamConstraintTableReader(rowCounts[(int)TableIndex.GenericParamConstraint], IsDeclaredSorted(TableMask.GenericParamConstraint), GetReferenceSize(rowCounts, TableIndex.GenericParam), typeDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize); 750var combinedRowCounts = (externalRowCountsOpt != null) ? CombineRowCounts(rowCounts, externalRowCountsOpt, firstLocalTableIndex: TableIndex.Document) : rowCounts; 752int methodRefSizeCombined = GetReferenceSize(combinedRowCounts, TableIndex.MethodDef); 755this.DocumentTable = new DocumentTableReader(rowCounts[(int)TableIndex.Document], guidHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 758this.MethodDebugInformationTable = new MethodDebugInformationTableReader(rowCounts[(int)TableIndex.MethodDebugInformation], GetReferenceSize(rowCounts, TableIndex.Document), blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 761this.LocalScopeTable = new LocalScopeTableReader(rowCounts[(int)TableIndex.LocalScope], IsDeclaredSorted(TableMask.LocalScope), methodRefSizeCombined, GetReferenceSize(rowCounts, TableIndex.ImportScope), GetReferenceSize(rowCounts, TableIndex.LocalVariable), GetReferenceSize(rowCounts, TableIndex.LocalConstant), metadataTablesMemoryBlock, totalRequiredSize); 764this.LocalVariableTable = new LocalVariableTableReader(rowCounts[(int)TableIndex.LocalVariable], stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 767this.LocalConstantTable = new LocalConstantTableReader(rowCounts[(int)TableIndex.LocalConstant], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 770this.ImportScopeTable = new ImportScopeTableReader(rowCounts[(int)TableIndex.ImportScope], GetReferenceSize(rowCounts, TableIndex.ImportScope), blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 773this.StateMachineMethodTable = new StateMachineMethodTableReader(rowCounts[(int)TableIndex.StateMachineMethod], IsDeclaredSorted(TableMask.StateMachineMethod), methodRefSizeCombined, metadataTablesMemoryBlock, totalRequiredSize); 776this.CustomDebugInformationTable = new CustomDebugInformationTableReader(rowCounts[(int)TableIndex.CustomDebugInformation], IsDeclaredSorted(TableMask.CustomDebugInformation), hasCustomDebugInformationRefSizeCombined, guidHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 785private static int[] CombineRowCounts(int[] local, int[] external, TableIndex firstLocalTableIndex)
System\Reflection\Metadata\PortablePdb\Tables.Debug.cs (3)
156Throw.TableNotSorted(TableIndex.LocalScope); 356Throw.TableNotSorted(TableIndex.StateMachineMethod); 465Throw.TableNotSorted(TableIndex.CustomDebugInformation);
System\Reflection\Throw.cs (2)
207internal static void TableNotSorted(TableIndex tableIndex) 213internal static void InvalidOperation_TableNotSorted(TableIndex tableIndex)
System.Reflection.MetadataLoadContext (5)
System\Reflection\TypeLoading\Modules\Ecma\EcmaModule.MetadataTables.cs (5)
20Interlocked.CompareExchange(ref _lazyTypeDefTable, CreateTable<EcmaDefinitionType>(TableIndex.TypeDef), null) ?? 41Interlocked.CompareExchange(ref field, CreateTable<RoDefinitionType>(TableIndex.TypeRef), null) ?? 46Interlocked.CompareExchange(ref field, CreateTable<EcmaGenericParameterType>(TableIndex.GenericParam), null) ?? 51Interlocked.CompareExchange(ref field, CreateTable<RoAssembly>(TableIndex.AssemblyRef), null) ?? 54private MetadataTable<T, EcmaModule> CreateTable<T>(TableIndex tableIndex) where T : class