4355 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; 800if (_previousGeneration.OriginalMetadata.MetadataReader.GetTableRowCount(TableIndex.MethodDef) >= MetadataTokens.GetRowNumber(handle)) 996: _previousGeneration.OriginalMetadata.MetadataReader.GetTableRowCount(TableIndex.CustomAttribute); 1107_ = MetadataTokens.TryGetTableIndex(parentHandle.Kind, out var parentTableIndex); 1109var deletedMemberRefHandle = MetadataTokens.EntityHandle(TableIndex.MemberRef, 0); 1121Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncLog] == 0); 1122Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncMap] == 0); 1141PopulateEncLogTableRows(TableIndex.AssemblyRef, previousSizes, deltaSizes); 1142PopulateEncLogTableRows(TableIndex.ModuleRef, previousSizes, deltaSizes); 1143PopulateEncLogTableRows(TableIndex.MemberRef, previousSizes, deltaSizes); 1144PopulateEncLogTableRows(TableIndex.MethodSpec, previousSizes, deltaSizes); 1145PopulateEncLogTableRows(TableIndex.TypeRef, previousSizes, deltaSizes); 1146PopulateEncLogTableRows(TableIndex.TypeSpec, previousSizes, deltaSizes); 1147PopulateEncLogTableRows(TableIndex.StandAloneSig, previousSizes, deltaSizes); 1149PopulateEncLogTableRows(_typeDefs, TableIndex.TypeDef); 1150PopulateEncLogTableRows(TableIndex.EventMap, previousSizes, deltaSizes); 1151PopulateEncLogTableRows(TableIndex.PropertyMap, previousSizes, deltaSizes); 1153PopulateEncLogTableEventsOrProperties(_eventDefs, TableIndex.Event, EditAndContinueOperation.AddEvent, _eventMap, TableIndex.EventMap); 1154PopulateEncLogTableFieldsOrMethods(_fieldDefs, TableIndex.Field, EditAndContinueOperation.AddField); 1155PopulateEncLogTableFieldsOrMethods(_methodDefs, TableIndex.MethodDef, EditAndContinueOperation.AddMethod); 1156PopulateEncLogTableEventsOrProperties(_propertyDefs, TableIndex.Property, EditAndContinueOperation.AddProperty, _propertyMap, TableIndex.PropertyMap); 1160PopulateEncLogTableRows(TableIndex.Constant, previousSizes, deltaSizes); 1169PopulateEncLogTableRows(TableIndex.DeclSecurity, previousSizes, deltaSizes); 1170PopulateEncLogTableRows(TableIndex.ClassLayout, previousSizes, deltaSizes); 1171PopulateEncLogTableRows(TableIndex.FieldLayout, previousSizes, deltaSizes); 1172PopulateEncLogTableRows(TableIndex.MethodSemantics, previousSizes, deltaSizes); 1173PopulateEncLogTableRows(TableIndex.MethodImpl, previousSizes, deltaSizes); 1174PopulateEncLogTableRows(TableIndex.ImplMap, previousSizes, deltaSizes); 1175PopulateEncLogTableRows(TableIndex.FieldRva, previousSizes, deltaSizes); 1176PopulateEncLogTableRows(TableIndex.NestedClass, previousSizes, deltaSizes); 1177PopulateEncLogTableRows(TableIndex.GenericParam, previousSizes, deltaSizes); 1178PopulateEncLogTableRows(TableIndex.InterfaceImpl, previousSizes, deltaSizes); 1179PopulateEncLogTableRows(TableIndex.GenericParamConstraint, previousSizes, deltaSizes); 1184TableIndex table, 1187TableIndex mapTable) 1210TableIndex tableIndex, 1262private void PopulateEncLogTableRows<T>(DefinitionIndex<T> index, TableIndex tableIndex) 1273private void PopulateEncLogTableRows(TableIndex tableIndex, ImmutableArray<int> previousSizes, ImmutableArray<int> deltaSizes) 1278private void PopulateEncLogTableRows(TableIndex tableIndex, int firstRowId, int tokenCount) 1299for (var tableIndex = (TableIndex)0; tableIndex <= TableIndex.GenericParamConstraint; tableIndex++) 1303case TableIndex.TypeRef: 1304case TableIndex.InterfaceImpl: 1305case TableIndex.MemberRef: 1306case TableIndex.Constant: 1307case TableIndex.DeclSecurity: 1308case TableIndex.ClassLayout: 1309case TableIndex.FieldLayout: 1310case TableIndex.StandAloneSig: 1311case TableIndex.EventMap: 1312case TableIndex.PropertyMap: 1313case TableIndex.MethodSemantics: 1314case TableIndex.MethodImpl: 1315case TableIndex.ModuleRef: 1316case TableIndex.TypeSpec: 1317case TableIndex.ImplMap: 1318case TableIndex.FieldRva: 1319case TableIndex.NestedClass: 1320case TableIndex.GenericParam: 1321case TableIndex.AssemblyRef: 1322case TableIndex.MethodSpec: 1323case TableIndex.GenericParamConstraint: 1327case TableIndex.TypeDef: 1331case TableIndex.Field: 1335case TableIndex.MethodDef: 1339case TableIndex.Event: 1343case TableIndex.Property: 1347case TableIndex.Param: 1348AddRowNumberTokens(tokens, TableIndex.Param, paramEncMapRows); 1351case TableIndex.CustomAttribute: 1352AddRowNumberTokens(tokens, TableIndex.CustomAttribute, _customAttributeRowIds); 1372AddDefinitionTokens(debugTokens, TableIndex.MethodDebugInformation, _methodDefs); 1389var handledTables = new TableIndex[] 1391TableIndex.Module, 1392TableIndex.TypeRef, 1393TableIndex.TypeDef, 1394TableIndex.Field, 1395TableIndex.MethodDef, 1396TableIndex.Param, 1397TableIndex.MemberRef, 1398TableIndex.Constant, 1399TableIndex.CustomAttribute, 1400TableIndex.DeclSecurity, 1401TableIndex.ClassLayout, 1402TableIndex.FieldLayout, 1403TableIndex.StandAloneSig, 1404TableIndex.EventMap, 1405TableIndex.Event, 1406TableIndex.PropertyMap, 1407TableIndex.Property, 1408TableIndex.MethodSemantics, 1409TableIndex.MethodImpl, 1410TableIndex.ModuleRef, 1411TableIndex.TypeSpec, 1412TableIndex.ImplMap, 1413TableIndex.FieldRva, 1414TableIndex.EncLog, 1415TableIndex.EncMap, 1416TableIndex.Assembly, 1417TableIndex.AssemblyRef, 1418TableIndex.MethodSpec, 1419TableIndex.NestedClass, 1420TableIndex.GenericParam, 1421TableIndex.InterfaceImpl, 1422TableIndex.GenericParamConstraint, 1427if (handledTables.Contains((TableIndex)i)) 1439TableIndex tableIndex, 1446private static void AddReferencedTokens(ArrayBuilder<EntityHandle> tokens, TableIndex tableIndex, int firstRowId, int nTokens) 1454private static void AddDefinitionTokens<T>(ArrayBuilder<EntityHandle> tokens, TableIndex tableIndex, DefinitionIndex<T> index) 1463private 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)
1725Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncLog] == 0); 1726Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncMap] == 0); 1968metadata.SetCapacity(TableIndex.AssemblyRef, assemblyRefs.Count); 2030AddCustomAttributesToTable(sortedGenericParameters, TableIndex.GenericParam); 2105private void AddCustomAttributesToTable<T>(IEnumerable<T> parentList, TableIndex tableIndex) 2213metadata.SetCapacity(TableIndex.Event, eventDefs.Count); 2237metadata.SetCapacity(TableIndex.ExportedType, exportedTypes.Length); 2381metadata.SetCapacity(TableIndex.Field, fieldDefs.Count); 2448metadata.SetCapacity(TableIndex.File, _fileRefList.Count); 2589metadata.SetCapacity(TableIndex.MemberRef, memberRefs.Count); 2614metadata.SetCapacity(TableIndex.MethodImpl, methodImplList.Count); 2628metadata.SetCapacity(TableIndex.MethodSpec, methodSpecs.Count); 2641metadata.SetCapacity(TableIndex.MethodDef, methodDefs.Count); 2664metadata.SetCapacity(TableIndex.MethodSemantics, propertyDefs.Count * 2 + eventDefs.Count * 2); 2738metadata.SetCapacity(TableIndex.ModuleRef, moduleRefs.Count); 2778metadata.SetCapacity(TableIndex.Param, parameterDefs.Count); 2792metadata.SetCapacity(TableIndex.Property, propertyDefs.Count); 2806metadata.SetCapacity(TableIndex.TypeDef, typeDefs.Count); 2863metadata.SetCapacity(TableIndex.TypeRef, typeRefs.Count); 2923metadata.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 (3411)
Emit\EditAndContinue\EditAndContinueClosureTests.cs (280)
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)); 9795Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 9796Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 9797Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default) 9925Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 9926Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 9927Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 9928Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 9929Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 9930Row(2, TableIndex.Field, EditAndContinueOperation.Default), 9931Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 9932Row(3, TableIndex.Field, EditAndContinueOperation.Default), 9933Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 9934Row(4, TableIndex.Field, EditAndContinueOperation.Default), 9935Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 9936Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 9937Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 9938Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 9939Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 9940Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 9941Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 9942Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9943Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9944Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9945Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default)
Emit\EditAndContinue\EditAndContinuePdbTests.cs (46)
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(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 287Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 288Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 289Row(6, TableIndex.Field, EditAndContinueOperation.Default), 290Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 291Row(7, TableIndex.Field, EditAndContinueOperation.Default), 292Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 293Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 294Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 295Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 296Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 297Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 298Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 299Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 300Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 301Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 302Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 303Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 310Handle(1, TableIndex.MethodDebugInformation), 311Handle(2, TableIndex.MethodDebugInformation), 312Handle(4, TableIndex.MethodDebugInformation), 313Handle(8, TableIndex.MethodDebugInformation), 314Handle(9, TableIndex.MethodDebugInformation), 315Handle(10, TableIndex.MethodDebugInformation), 316Handle(11, TableIndex.MethodDebugInformation), 317Handle(12, TableIndex.MethodDebugInformation), 318Handle(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)
155internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation) 160internal static EntityHandle Handle(int rowNumber, TableIndex table)
Emit\EditAndContinue\EditAndContinueTests.cs (2702)
92Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 93Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 94Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 95Row(1, TableIndex.Field, EditAndContinueOperation.Default), 96Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 97Row(2, TableIndex.Field, EditAndContinueOperation.Default), 98Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 99Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 100Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 101Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 106Handle(3, TableIndex.TypeDef), 107Handle(1, TableIndex.Field), 108Handle(2, TableIndex.Field), 109Handle(2, TableIndex.MethodDef), 110Handle(3, TableIndex.MethodDef), 111Handle(4, TableIndex.CustomAttribute), 112Handle(1, TableIndex.StandAloneSig) 189Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 190Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 191Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 192Row(1, TableIndex.Field, EditAndContinueOperation.Default), 193Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 194Row(2, TableIndex.Field, EditAndContinueOperation.Default), 195Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 196Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 197Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 198Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 199Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 200Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 205Handle(3, TableIndex.TypeDef), 206Handle(1, TableIndex.Field), 207Handle(2, TableIndex.Field), 208Handle(1, TableIndex.MethodDef), 209Handle(2, TableIndex.MethodDef), 210Handle(3, TableIndex.MethodDef), 211Handle(4, TableIndex.CustomAttribute), 212Handle(1, TableIndex.StandAloneSig) 572Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 573Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.F 576Handle(2, TableIndex.MethodDef), 577Handle(2, TableIndex.StandAloneSig)); 635Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 636Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 637Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 640Handle(1, TableIndex.MethodDef), 641Handle(1, TableIndex.Param), 642Handle(2, TableIndex.StandAloneSig)); 661Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 662Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 663Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 666Handle(1, TableIndex.MethodDef), 667Handle(1, TableIndex.Param), 668Handle(3, TableIndex.StandAloneSig)); 708Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 709Row(1, TableIndex.Param, EditAndContinueOperation.Default), 710Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 714Handle(4, TableIndex.MethodDef), 715Handle(1, TableIndex.Param), 716Handle(12, TableIndex.CustomAttribute) 755Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 756Row(1, TableIndex.Param, EditAndContinueOperation.Default) 760Handle(1, TableIndex.MethodDef), 761Handle(1, TableIndex.Param) 802Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 803Row(1, TableIndex.Param, EditAndContinueOperation.Default), 804Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 808Handle(3, TableIndex.MethodDef), 809Handle(1, TableIndex.Param), 810Handle(9, TableIndex.CustomAttribute) 863Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 864Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 865Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 866Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 867Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 868Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 869Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.F 872Handle(7, TableIndex.TypeRef), 873Handle(8, TableIndex.TypeRef), 874Handle(2, TableIndex.MethodDef), 875Handle(6, TableIndex.MemberRef), 876Handle(2, TableIndex.StandAloneSig), 877Handle(2, TableIndex.TypeSpec), 878Handle(2, TableIndex.AssemblyRef)); 925Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 926Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Row 4, so updating existing CustomAttribute 931Handle(7, TableIndex.MethodDef), 932Handle(4, TableIndex.CustomAttribute), 959Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 960Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 961Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating the existing custom attribute 962Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // adding a new CustomAttribute for method F 963Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // adding a new CustomAttribute for type C 968Handle(8, TableIndex.TypeDef), 969Handle(7, TableIndex.MethodDef), 970Handle(4, TableIndex.CustomAttribute), 971Handle(5, TableIndex.CustomAttribute), 972Handle(6, TableIndex.CustomAttribute), 995Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 996Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating the existing custom attribute 997Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating a row that was new in Generation 2 998Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) // adding a new CustomAttribute, and skipping row 6 which is not for the method being emitted 1003Handle(7, TableIndex.MethodDef), 1004Handle(4, TableIndex.CustomAttribute), 1005Handle(5, TableIndex.CustomAttribute), 1006Handle(7, TableIndex.CustomAttribute), 1051new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1052new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1053new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1056new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 1059new CustomAttributeRow(Handle(9, TableIndex.TypeDef), Handle(1, TableIndex.MethodDef)), 1062new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 1065new CustomAttributeRow(Handle(10, TableIndex.TypeDef), Handle(2, TableIndex.MethodDef)) 1092Handle(8, TableIndex.MethodDef), 1093Handle(10, TableIndex.MethodDef), 1094Handle(4, TableIndex.CustomAttribute), 1095Handle(6, TableIndex.CustomAttribute), 1096Handle(8, TableIndex.CustomAttribute), 1097Handle(9, TableIndex.CustomAttribute), 1098Handle(10, TableIndex.CustomAttribute) 1103Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1104Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1105Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // update existing row 1106Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // update existing row 1107Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // add new row 1108Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // add new row 1109Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default),// add new row 1114new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 1115new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), 1116new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), 1117new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 1118new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)), 1164new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1165new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1166new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1167new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 1190new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // Parent row id is 0, signifying a delete 1193Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1194Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 1195Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 1196Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 1197Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1198Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1199Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so updating existing CustomAttribute 1202Handle(7, TableIndex.TypeRef), 1203Handle(8, TableIndex.TypeRef), 1204Handle(2, TableIndex.MethodDef), 1205Handle(6, TableIndex.MemberRef), 1206Handle(4, TableIndex.CustomAttribute), 1207Handle(2, TableIndex.StandAloneSig), 1208Handle(2, TableIndex.AssemblyRef)); 1227new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(7, TableIndex.MemberRef))); 1230Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1231Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 1232Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 1233Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 1234Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 1235Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 1236Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1237Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1238Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, updating the original row back to a real one 1241Handle(9, TableIndex.TypeRef), 1242Handle(10, TableIndex.TypeRef), 1243Handle(11, TableIndex.TypeRef), 1244Handle(2, TableIndex.MethodDef), 1245Handle(7, TableIndex.MemberRef), 1246Handle(8, TableIndex.MemberRef), 1247Handle(4, TableIndex.CustomAttribute), 1248Handle(3, TableIndex.StandAloneSig), 1249Handle(3, TableIndex.AssemblyRef)); 1288new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1289new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1290new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef))); 1313new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(5, TableIndex.MemberRef))); 1316Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1317Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 1318Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 1319Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 1320Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 1321Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 1322Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1323Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1324Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so adding a new CustomAttribute 1327Handle(6, TableIndex.TypeRef), 1328Handle(7, TableIndex.TypeRef), 1329Handle(8, TableIndex.TypeRef), 1330Handle(2, TableIndex.MethodDef), 1331Handle(5, TableIndex.MemberRef), 1332Handle(6, TableIndex.MemberRef), 1333Handle(4, TableIndex.CustomAttribute), 1334Handle(2, TableIndex.StandAloneSig), 1335Handle(2, TableIndex.AssemblyRef)); 1353new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // 0, delete 1356Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1357Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 1358Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1359Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1360Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so updating existing CustomAttribute 1363Handle(9, TableIndex.TypeRef), 1364Handle(2, TableIndex.MethodDef), 1365Handle(4, TableIndex.CustomAttribute), 1366Handle(3, TableIndex.StandAloneSig), 1367Handle(3, TableIndex.AssemblyRef)); 1385new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(7, TableIndex.MemberRef))); 1388Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1389Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 1390Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 1391Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 1392Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 1393Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 1394Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1395Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1396Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, update the previously deleted row 1399Handle(10, TableIndex.TypeRef), 1400Handle(11, TableIndex.TypeRef), 1401Handle(12, TableIndex.TypeRef), 1402Handle(2, TableIndex.MethodDef), 1403Handle(7, TableIndex.MemberRef), 1404Handle(8, TableIndex.MemberRef), 1405Handle(4, TableIndex.CustomAttribute), 1406Handle(4, TableIndex.StandAloneSig), 1407Handle(4, TableIndex.AssemblyRef)); 1439new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1440new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1441new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1444new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // Row 4 1445new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // Row 5 1448new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // Row 6 1451new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), // Row 7 1452new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), // Row 8 1474Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1475Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1476Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1477Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1478Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1479Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1480Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1481Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1482Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1487Handle(9, TableIndex.MethodDef), 1488Handle(10, TableIndex.MethodDef), 1489Handle(11, TableIndex.MethodDef), 1490Handle(4, TableIndex.CustomAttribute), 1491Handle(5, TableIndex.CustomAttribute), 1492Handle(6, TableIndex.CustomAttribute), 1493Handle(7, TableIndex.CustomAttribute), 1494Handle(8, TableIndex.CustomAttribute), 1495Handle(9, TableIndex.CustomAttribute), 1500new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A2] delete 1501new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A5] delete 1502new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // F [A1] -> [A2] 1503new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)),// G [A3] -> [A4] 1504new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)),// G [A3] add with RowId 9 1505new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)),// H [A6] -> [A7] 1526Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1527Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1528Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1529Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1530Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1531Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1532Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1533Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1538Handle(10, TableIndex.MethodDef), 1539Handle(11, TableIndex.MethodDef), 1540Handle(6, TableIndex.CustomAttribute), 1541Handle(7, TableIndex.CustomAttribute), 1542Handle(8, TableIndex.CustomAttribute), 1543Handle(9, TableIndex.CustomAttribute), 1544Handle(10, TableIndex.CustomAttribute), 1545Handle(11, TableIndex.CustomAttribute), 1550new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // G [A4] delete 1551new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // G [A3] delete 1552new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), // H [A5] 1553new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), // H [A6] 1554new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)), // H [A7] add with RowId 10 1555new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(8, TableIndex.MethodDef)), // H [A8] add with RowId 11 1575Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1576Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1577Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1578Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1579Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1584Handle(11, TableIndex.MethodDef), 1585Handle(7, TableIndex.CustomAttribute), 1586Handle(8, TableIndex.CustomAttribute), 1587Handle(10, TableIndex.CustomAttribute), 1588Handle(11, TableIndex.CustomAttribute), 1593new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A5] delete 1594new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A6] delete 1595new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A7] delete 1596new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A8] delete 1626new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1627new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1628new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1647Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1648Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1653Handle(6, TableIndex.MethodDef), 1654Handle(4, TableIndex.CustomAttribute), 1659new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // G: [A1] add RowId 4 1678Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1679Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1684Handle(5, TableIndex.MethodDef), 1685Handle(5, TableIndex.CustomAttribute), 1690new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // F: [A2] add RowId 5 1710Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1711Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1712Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1713Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1718Handle(5, TableIndex.MethodDef), 1719Handle(6, TableIndex.MethodDef), 1720Handle(4, TableIndex.CustomAttribute), 1721Handle(5, TableIndex.CustomAttribute), 1726new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // G: [A2] -> [A4] 1727new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), // F: [A1] -> [A3] 1755new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1756new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1757new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1760new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // Row 4 1778Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1779Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1780Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1785Handle(4, TableIndex.MethodDef), 1786Handle(4, TableIndex.CustomAttribute), 1787Handle(5, TableIndex.CustomAttribute), 1792new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // F [A1] -> [A2] 1793new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // F [A3] add RowId 5 1811Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1812Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1813Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1818Handle(4, TableIndex.MethodDef), 1819Handle(4, TableIndex.CustomAttribute), 1820Handle(5, TableIndex.CustomAttribute), 1825new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A2] delete 1826new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A3] delete 1867new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1868new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1869new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1870new CustomAttributeRow(Handle(3, TableIndex.TypeDef), Handle(4, TableIndex.MemberRef))); 1891new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(8, TableIndex.MemberRef))); 1894Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1895Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 1896Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1897Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1898Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // row 5 = new custom attribute 1901Handle(1, TableIndex.MethodDef), 1902Handle(5, TableIndex.MethodDef), 1903Handle(1, TableIndex.Param), 1904Handle(5, TableIndex.CustomAttribute), 1905Handle(2, TableIndex.StandAloneSig)); 2550g.VerifyTableSize(TableIndex.MethodDef, 6); 2582Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2583Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 2584Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2585Row(4, TableIndex.Field, EditAndContinueOperation.Default), 2586Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2587Row(5, TableIndex.Field, EditAndContinueOperation.Default), 2588Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 2589Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 2590Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 2591Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2592Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 2593Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 2597Handle(4, TableIndex.TypeDef), 2598Handle(4, TableIndex.Field), 2599Handle(5, TableIndex.Field), 2600Handle(1, TableIndex.MethodDef), 2601Handle(5, TableIndex.MethodDef), 2602Handle(6, TableIndex.MethodDef), 2603Handle(7, TableIndex.MethodDef), 2604Handle(5, TableIndex.CustomAttribute), 2605Handle(1, TableIndex.StandAloneSig) 2903Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default) 2908Handle(2, TableIndex.MethodDef) 3066Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3067Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3068Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 3073Handle(4, TableIndex.CustomAttribute), 3074Handle(1, TableIndex.Property), 3075Handle(2, TableIndex.MethodSemantics) 3115Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 3120Handle(1, TableIndex.MethodDef) 3178Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3179Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 3180Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 3181Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 3182Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 3183Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3184Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3185Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3186Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3187Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, a new attribute 3190Handle(6, TableIndex.TypeRef), 3191Handle(7, TableIndex.TypeRef), 3192Handle(8, TableIndex.TypeRef), 3193Handle(3, TableIndex.MethodDef), 3194Handle(5, TableIndex.MemberRef), 3195Handle(6, TableIndex.MemberRef), 3196Handle(4, TableIndex.CustomAttribute), 3197Handle(1, TableIndex.StandAloneSig), 3198Handle(2, TableIndex.AssemblyRef)); 3245new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 3246new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 3247new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef))); 3272new CustomAttributeRow(Handle(1, TableIndex.Param), Handle(5, TableIndex.MemberRef))); 3275Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3276Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 3277Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 3278Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 3279Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3280Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3281Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3282Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), // New method, G 3283Row(1, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param 3284Row(2, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param 3285Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), // New param on method, G 3286Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Support for the above 3287Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3290Handle(6, TableIndex.TypeRef), 3291Handle(7, TableIndex.TypeRef), 3292Handle(2, TableIndex.MethodDef), 3293Handle(4, TableIndex.MethodDef), 3294Handle(1, TableIndex.Param), 3295Handle(2, TableIndex.Param), 3296Handle(3, TableIndex.Param), 3297Handle(5, TableIndex.MemberRef), 3298Handle(4, TableIndex.CustomAttribute), 3299Handle(2, TableIndex.StandAloneSig), 3300Handle(2, TableIndex.AssemblyRef)); 3319new CustomAttributeRow(Handle(3, TableIndex.Param), Handle(6, TableIndex.MemberRef))); 3322Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3323Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 3324Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3325Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 3326Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3327Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param, from the first delta 3328Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3331Handle(8, TableIndex.TypeRef), 3332Handle(9, TableIndex.TypeRef), 3333Handle(4, TableIndex.MethodDef), 3334Handle(3, TableIndex.Param), 3335Handle(6, TableIndex.MemberRef), 3336Handle(5, TableIndex.CustomAttribute), 3337Handle(3, TableIndex.AssemblyRef)); 3382new CustomAttributeRow(Handle(3, TableIndex.Param), Handle(1, TableIndex.MethodDef)), 3383new CustomAttributeRow(Handle(4, TableIndex.Param), Handle(1, TableIndex.MethodDef))); 3386Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3387Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 3388Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 3389Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 3390Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 3391Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3392Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3393Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Updating existing parameter defs 3394Row(4, TableIndex.Param, EditAndContinueOperation.Default), 3395Row(5, TableIndex.Param, EditAndContinueOperation.Default), 3396Row(6, TableIndex.Param, EditAndContinueOperation.Default), 3397Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Adding new custom attribute rows 3398Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3401Handle(10, TableIndex.TypeRef), 3402Handle(11, TableIndex.TypeRef), 3403Handle(12, TableIndex.TypeRef), 3404Handle(13, TableIndex.TypeRef), 3405Handle(3, TableIndex.MethodDef), 3406Handle(4, TableIndex.MethodDef), 3407Handle(3, TableIndex.Param), 3408Handle(4, TableIndex.Param), 3409Handle(5, TableIndex.Param), 3410Handle(6, TableIndex.Param), 3411Handle(4, TableIndex.CustomAttribute), 3412Handle(5, TableIndex.CustomAttribute), 3413Handle(2, TableIndex.AssemblyRef)); 3455new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 3456new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 3457new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 3458new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 3459new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 3460new CustomAttributeRow(Handle(13, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 3502new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(5, TableIndex.MethodDef)), // X 3503new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(2, TableIndex.MethodDef)), // E.A 3504new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(4, TableIndex.MethodDef)), // _x 3505new CustomAttributeRow(Handle(14, TableIndex.TypeDef), Handle(1, TableIndex.MethodDef)), // E 3506new CustomAttributeRow(Handle(15, TableIndex.TypeDef), Handle(3, TableIndex.MethodDef)), // C 3507new CustomAttributeRow(Handle(16, TableIndex.TypeDef), Handle(6, TableIndex.MethodDef)), // D 3512Row(14, TableIndex.TypeDef, EditAndContinueOperation.Default), 3513Row(15, TableIndex.TypeDef, EditAndContinueOperation.Default), 3514Row(16, TableIndex.TypeDef, EditAndContinueOperation.Default), 3515Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3516Row(3, TableIndex.Field, EditAndContinueOperation.Default), 3517Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3518Row(2, TableIndex.Constant, EditAndContinueOperation.Default), 3519Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3520Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3521Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3522Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3523Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3524Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3525Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 3530Handle(14, TableIndex.TypeDef), 3531Handle(15, TableIndex.TypeDef), 3532Handle(16, TableIndex.TypeDef), 3533Handle(2, TableIndex.Field), 3534Handle(3, TableIndex.Field), 3535Handle(2, TableIndex.Constant), 3536Handle(7, TableIndex.CustomAttribute), 3537Handle(8, TableIndex.CustomAttribute), 3538Handle(9, TableIndex.CustomAttribute), 3539Handle(10, TableIndex.CustomAttribute), 3540Handle(11, TableIndex.CustomAttribute), 3541Handle(12, TableIndex.CustomAttribute), 3542Handle(1, TableIndex.Property), 3543Handle(2, TableIndex.MethodSemantics) 3583new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(11, TableIndex.MethodDef)),// X 3584new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(8, TableIndex.MethodDef)), // E.A 3585new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(10, TableIndex.MethodDef)), // _x 3586new CustomAttributeRow(Handle(14, TableIndex.TypeDef), Handle(7, TableIndex.MethodDef)), // E 3587new CustomAttributeRow(Handle(15, TableIndex.TypeDef), Handle(9, TableIndex.MethodDef)), // C 3588new CustomAttributeRow(Handle(16, TableIndex.TypeDef), Handle(12, TableIndex.MethodDef)),// D 3593Row(14, TableIndex.TypeDef, EditAndContinueOperation.Default), 3594Row(15, TableIndex.TypeDef, EditAndContinueOperation.Default), 3595Row(16, TableIndex.TypeDef, EditAndContinueOperation.Default), 3596Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3597Row(3, TableIndex.Field, EditAndContinueOperation.Default), 3598Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3599Row(3, TableIndex.Constant, EditAndContinueOperation.Default), 3600Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Same row numbers as previous gen 3601Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3602Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3603Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3604Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3605Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3606Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 3611Handle(14, TableIndex.TypeDef), 3612Handle(15, TableIndex.TypeDef), 3613Handle(16, TableIndex.TypeDef), 3614Handle(2, TableIndex.Field), 3615Handle(3, TableIndex.Field), 3616Handle(3, TableIndex.Constant), 3617Handle(7, TableIndex.CustomAttribute), 3618Handle(8, TableIndex.CustomAttribute), 3619Handle(9, TableIndex.CustomAttribute), 3620Handle(10, TableIndex.CustomAttribute), 3621Handle(11, TableIndex.CustomAttribute), 3622Handle(12, TableIndex.CustomAttribute), 3623Handle(1, TableIndex.Property), 3624Handle(3, TableIndex.MethodSemantics) 3690Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3691Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3692Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3693Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3694Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3695Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3696Row(1, TableIndex.Constant, EditAndContinueOperation.Default), 3697Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3700Handle(3, TableIndex.MethodDef), 3701Handle(1, TableIndex.Param), 3702Handle(2, TableIndex.Param), 3703Handle(1, TableIndex.Constant), 3704Handle(4, TableIndex.CustomAttribute)); 3725Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), // C.F2 3726Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3727Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3728Row(2, TableIndex.Constant, EditAndContinueOperation.Default), 3729Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3732Handle(3, TableIndex.MethodDef), 3733Handle(1, TableIndex.Param), 3734Handle(2, TableIndex.Param), 3735Handle(2, TableIndex.Constant), 3736Handle(4, TableIndex.CustomAttribute)); 3874Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3875Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 3876Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 3877Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 3878Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 3879Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3880Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 3881Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 3882Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 3883Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 3884Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3885Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3886Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3887Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3888Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3889Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3890Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 3891Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3892Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 3893Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3894Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3895Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3896Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3897Row(7, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3898Row(3, TableIndex.Param, EditAndContinueOperation.Default), 3899Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3900Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3901Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3902Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3903Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3904Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3905Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3932Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3933Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 3934Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 3935Row(9, TableIndex.MemberRef, EditAndContinueOperation.Default), 3936Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 3937Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 3938Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 3939Row(14, TableIndex.TypeRef, EditAndContinueOperation.Default), 3940Row(15, TableIndex.TypeRef, EditAndContinueOperation.Default), 3941Row(16, TableIndex.TypeRef, EditAndContinueOperation.Default), 3942Row(17, TableIndex.TypeRef, EditAndContinueOperation.Default), 3943Row(18, TableIndex.TypeRef, EditAndContinueOperation.Default), 3944Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), // NullableAttribute 3945Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), // NullableContextAttribute 3946Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3947Row(1, TableIndex.Field, EditAndContinueOperation.Default), 3948Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3949Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3950Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 3951Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3952Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 3953Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3954Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 3955Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3956Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 3957Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3958Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 3959Row(3, TableIndex.Param, EditAndContinueOperation.Default), 3960Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3961Row(4, TableIndex.Param, EditAndContinueOperation.Default), 3962Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3963Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3964Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3965Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3966Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3967Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3968Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3969Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3972Handle(11, TableIndex.TypeRef), 3973Handle(12, TableIndex.TypeRef), 3974Handle(13, TableIndex.TypeRef), 3975Handle(14, TableIndex.TypeRef), 3976Handle(15, TableIndex.TypeRef), 3977Handle(16, TableIndex.TypeRef), 3978Handle(17, TableIndex.TypeRef), 3979Handle(18, TableIndex.TypeRef), 3980Handle(6, TableIndex.TypeDef), 3981Handle(7, TableIndex.TypeDef), 3982Handle(1, TableIndex.Field), 3983Handle(2, TableIndex.Field), 3984Handle(7, TableIndex.MethodDef), 3985Handle(8, TableIndex.MethodDef), 3986Handle(9, TableIndex.MethodDef), 3987Handle(10, TableIndex.MethodDef), 3988Handle(11, TableIndex.MethodDef), 3989Handle(3, TableIndex.Param), 3990Handle(4, TableIndex.Param), 3991Handle(7, TableIndex.MemberRef), 3992Handle(8, TableIndex.MemberRef), 3993Handle(9, TableIndex.MemberRef), 3994Handle(10, TableIndex.CustomAttribute), 3995Handle(11, TableIndex.CustomAttribute), 3996Handle(12, TableIndex.CustomAttribute), 3997Handle(13, TableIndex.CustomAttribute), 3998Handle(14, TableIndex.CustomAttribute), 3999Handle(15, TableIndex.CustomAttribute), 4000Handle(16, TableIndex.CustomAttribute), 4001Handle(17, TableIndex.CustomAttribute), 4002Handle(3, TableIndex.AssemblyRef)); 4026Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 4027Row(19, TableIndex.TypeRef, EditAndContinueOperation.Default), 4028Row(20, TableIndex.TypeRef, EditAndContinueOperation.Default), 4029Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4030Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 4031Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 4032Row(5, TableIndex.Param, EditAndContinueOperation.Default), 4033Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4034Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4085Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 4086Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 4087Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 4088Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4089Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4090Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 4093Handle(6, TableIndex.TypeRef), 4094Handle(2, TableIndex.Field), 4095Handle(1, TableIndex.MethodDef), 4096Handle(5, TableIndex.MemberRef), 4097Handle(2, TableIndex.AssemblyRef)); 4139Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 4140Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 4141Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 4142Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4143Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 4146Handle(7, TableIndex.TypeRef), 4147Handle(8, TableIndex.TypeRef), 4148Handle(1, TableIndex.MethodDef), 4149Handle(2, TableIndex.StandAloneSig), 4150Handle(2, TableIndex.AssemblyRef)); 4213Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4214Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 4215Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4216Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4217Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 4218Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4219Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 4222Handle(2, TableIndex.MethodDef), 4223Handle(1, TableIndex.StandAloneSig), 4224Handle(1, TableIndex.PropertyMap), 4225Handle(1, TableIndex.Property), 4226Handle(1, TableIndex.MethodSemantics)); 4252Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4253Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4254Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4255Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 4256Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4257Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4258Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 4259Row(2, TableIndex.Property, EditAndContinueOperation.Default), 4260Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 4261Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4262Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4263Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4264Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4265Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4266Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4267Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 4270Handle(1, TableIndex.Field), 4271Handle(3, TableIndex.MethodDef), 4272Handle(4, TableIndex.MethodDef), 4273Handle(1, TableIndex.Param), 4274Handle(4, TableIndex.CustomAttribute), 4275Handle(5, TableIndex.CustomAttribute), 4276Handle(6, TableIndex.CustomAttribute), 4277Handle(7, TableIndex.CustomAttribute), 4278Handle(2, TableIndex.Property), 4279Handle(2, TableIndex.MethodSemantics), 4280Handle(3, TableIndex.MethodSemantics)); 4327Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4328Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 4329Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4330Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4331Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4332Row(3, TableIndex.Field, EditAndContinueOperation.Default), 4333Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4334Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4335Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4336Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4337Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4338Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4339Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4340Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4341Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4346Handle(4, TableIndex.TypeDef), 4347Handle(2, TableIndex.Field), 4348Handle(3, TableIndex.Field), 4349Handle(1, TableIndex.MethodDef), 4350Handle(2, TableIndex.MethodDef), 4351Handle(5, TableIndex.MethodDef), 4352Handle(1, TableIndex.CustomAttribute), 4353Handle(7, TableIndex.CustomAttribute), 4354Handle(9, TableIndex.CustomAttribute), 4355Handle(10, TableIndex.CustomAttribute), 4356Handle(1, TableIndex.StandAloneSig), 4357Handle(1, TableIndex.Property) 4410Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4411Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4412Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4413Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4414Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4415Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4416Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4417Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4418Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4423Handle(1, TableIndex.MethodDef), 4424Handle(2, TableIndex.MethodDef), 4425Handle(1, TableIndex.Param), 4426Handle(1, TableIndex.CustomAttribute), 4427Handle(7, TableIndex.CustomAttribute), 4428Handle(10, TableIndex.CustomAttribute), 4429Handle(1, TableIndex.Property), 4430Handle(3, TableIndex.MethodSemantics), 4431Handle(4, TableIndex.MethodSemantics) 4501Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4502Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4503Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4504Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4505Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4506Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4507Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4508Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4509Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4510Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4511Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4512Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4517Handle(3, TableIndex.TypeDef), 4518Handle(1, TableIndex.Field), 4519Handle(2, TableIndex.Field), 4520Handle(1, TableIndex.MethodDef), 4521Handle(2, TableIndex.MethodDef), 4522Handle(4, TableIndex.MethodDef), 4523Handle(4, TableIndex.CustomAttribute), 4524Handle(2, TableIndex.StandAloneSig), 4525Handle(1, TableIndex.Property) 4580Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4581Row(3, TableIndex.Field, EditAndContinueOperation.Default), 4582Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4583Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4584Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4585Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4586Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4587Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4588Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4589Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4590Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4591Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4595Handle(3, TableIndex.Field), 4596Handle(1, TableIndex.MethodDef), 4597Handle(2, TableIndex.MethodDef), 4598Handle(1, TableIndex.Param), 4599Handle(5, TableIndex.CustomAttribute), 4600Handle(6, TableIndex.CustomAttribute), 4601Handle(7, TableIndex.CustomAttribute), 4602Handle(8, TableIndex.CustomAttribute), 4603Handle(1, TableIndex.Property), 4604Handle(3, TableIndex.MethodSemantics), 4605Handle(4, TableIndex.MethodSemantics) 4667Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4668Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4669Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4670Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4671Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4672Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4673Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4674Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4675Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4676Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4677Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4678Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4683Handle(3, TableIndex.TypeDef), 4684Handle(1, TableIndex.Field), 4685Handle(2, TableIndex.Field), 4686Handle(1, TableIndex.MethodDef), 4687Handle(2, TableIndex.MethodDef), 4688Handle(4, TableIndex.MethodDef), 4689Handle(4, TableIndex.CustomAttribute), 4690Handle(2, TableIndex.StandAloneSig), 4691Handle(1, TableIndex.Property) 4747Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4748Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4749Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4750Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4751Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4752Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4753Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4757Handle(1, TableIndex.MethodDef), 4758Handle(2, TableIndex.MethodDef), 4759Handle(1, TableIndex.Param), 4760Handle(3, TableIndex.StandAloneSig), 4761Handle(1, TableIndex.Property), 4762Handle(3, TableIndex.MethodSemantics), 4763Handle(4, TableIndex.MethodSemantics), 4826Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4827Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4828Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4829Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4830Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4831Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4832Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4833Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4834Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4835Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4840Handle(3, TableIndex.TypeDef), 4841Handle(1, TableIndex.Field), 4842Handle(2, TableIndex.Field), 4843Handle(2, TableIndex.MethodDef), 4844Handle(4, TableIndex.MethodDef), 4845Handle(4, TableIndex.CustomAttribute), 4846Handle(2, TableIndex.StandAloneSig) 4901Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4902Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4903Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4904Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4905Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4906Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4907Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4911Handle(1, TableIndex.MethodDef), 4912Handle(2, TableIndex.MethodDef), 4913Handle(1, TableIndex.Param), 4914Handle(3, TableIndex.StandAloneSig), 4915Handle(1, TableIndex.Property), 4916Handle(3, TableIndex.MethodSemantics), 4917Handle(4, TableIndex.MethodSemantics), 4980Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4981Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4982Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4983Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4984Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4985Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4986Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4987Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4988Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4989Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4990Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4991Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4995Handle(1, TableIndex.Field), 4996Handle(1, TableIndex.MethodDef), 4997Handle(2, TableIndex.MethodDef), 4998Handle(1, TableIndex.Param), 4999Handle(4, TableIndex.CustomAttribute), 5000Handle(5, TableIndex.CustomAttribute), 5001Handle(6, TableIndex.CustomAttribute), 5002Handle(7, TableIndex.CustomAttribute), 5003Handle(1, TableIndex.Property), 5004Handle(3, TableIndex.MethodSemantics), 5005Handle(4, TableIndex.MethodSemantics) 5069Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5070Row(1, TableIndex.Field, EditAndContinueOperation.Default), 5071Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5072Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5073Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5074Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5075Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5076Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5077Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5078Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5079Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5083Handle(1, TableIndex.Field), 5084Handle(1, TableIndex.MethodDef), 5085Handle(2, TableIndex.MethodDef), 5086Handle(1, TableIndex.Param), 5087Handle(4, TableIndex.CustomAttribute), 5088Handle(5, TableIndex.CustomAttribute), 5089Handle(6, TableIndex.CustomAttribute), 5090Handle(1, TableIndex.Property), 5091Handle(3, TableIndex.MethodSemantics), 5092Handle(4, TableIndex.MethodSemantics) 5156Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5157Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5158Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5159Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5160Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5161Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5162Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5163Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5167Handle(1, TableIndex.MethodDef), 5168Handle(2, TableIndex.MethodDef), 5169Handle(1, TableIndex.Param), 5170Handle(1, TableIndex.CustomAttribute), 5171Handle(7, TableIndex.CustomAttribute), 5172Handle(1, TableIndex.Property), 5173Handle(3, TableIndex.MethodSemantics), 5174Handle(4, TableIndex.MethodSemantics) 5244Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5245Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 5246Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5247Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5248Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5249Row(3, TableIndex.Field, EditAndContinueOperation.Default), 5250Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5251Row(4, TableIndex.Field, EditAndContinueOperation.Default), 5252Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5253Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5254Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5255Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5256Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5257Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 5258Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5259Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 5260Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5261Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 5262Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5263Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5264Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5265Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5266Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5267Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5268Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5269Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5270Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5271Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5272Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5273Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5274Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5279Handle(4, TableIndex.TypeDef), 5280Handle(2, TableIndex.Field), 5281Handle(3, TableIndex.Field), 5282Handle(4, TableIndex.Field), 5283Handle(1, TableIndex.MethodDef), 5284Handle(2, TableIndex.MethodDef), 5285Handle(5, TableIndex.MethodDef), 5286Handle(6, TableIndex.MethodDef), 5287Handle(7, TableIndex.MethodDef), 5288Handle(2, TableIndex.Param), 5289Handle(1, TableIndex.CustomAttribute), 5290Handle(7, TableIndex.CustomAttribute), 5291Handle(9, TableIndex.CustomAttribute), 5292Handle(10, TableIndex.CustomAttribute), 5293Handle(11, TableIndex.CustomAttribute), 5294Handle(12, TableIndex.CustomAttribute), 5295Handle(13, TableIndex.CustomAttribute), 5296Handle(14, TableIndex.CustomAttribute), 5297Handle(1, TableIndex.StandAloneSig), 5298Handle(1, TableIndex.Property), 5299Handle(2, TableIndex.Property), 5300Handle(3, TableIndex.MethodSemantics), 5301Handle(4, TableIndex.MethodSemantics) 5378Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5379Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5380Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5381Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 5382Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5383Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5384Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5385Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5386Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5387Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5388Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5389Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5390Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5391Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5392Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5396Handle(1, TableIndex.MethodDef), 5397Handle(2, TableIndex.MethodDef), 5398Handle(5, TableIndex.MethodDef), 5399Handle(6, TableIndex.MethodDef), 5400Handle(1, TableIndex.Param), 5401Handle(1, TableIndex.CustomAttribute), 5402Handle(7, TableIndex.CustomAttribute), 5403Handle(12, TableIndex.CustomAttribute), 5404Handle(13, TableIndex.CustomAttribute), 5405Handle(14, TableIndex.CustomAttribute), 5406Handle(15, TableIndex.CustomAttribute), 5407Handle(1, TableIndex.Property), 5408Handle(2, TableIndex.Property), 5409Handle(5, TableIndex.MethodSemantics), 5410Handle(6, TableIndex.MethodSemantics), 5496Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5497Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 5498Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5499Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5500Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5501Row(3, TableIndex.Field, EditAndContinueOperation.Default), 5502Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5503Row(4, TableIndex.Field, EditAndContinueOperation.Default), 5504Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5505Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5506Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5507Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5508Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5509Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 5510Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5511Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 5512Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5513Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 5514Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5515Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5516Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5517Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5518Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5519Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5520Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5521Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5522Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5523Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5524Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5525Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5526Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5530Handle(4, TableIndex.TypeDef), 5531Handle(2, TableIndex.Field), 5532Handle(3, TableIndex.Field), 5533Handle(4, TableIndex.Field), 5534Handle(1, TableIndex.MethodDef), 5535Handle(2, TableIndex.MethodDef), 5536Handle(5, TableIndex.MethodDef), 5537Handle(6, TableIndex.MethodDef), 5538Handle(7, TableIndex.MethodDef), 5539Handle(2, TableIndex.Param), 5540Handle(1, TableIndex.CustomAttribute), 5541Handle(7, TableIndex.CustomAttribute), 5542Handle(9, TableIndex.CustomAttribute), 5543Handle(10, TableIndex.CustomAttribute), 5544Handle(11, TableIndex.CustomAttribute), 5545Handle(12, TableIndex.CustomAttribute), 5546Handle(13, TableIndex.CustomAttribute), 5547Handle(14, TableIndex.CustomAttribute), 5548Handle(1, TableIndex.StandAloneSig), 5549Handle(1, TableIndex.Property), 5550Handle(2, TableIndex.Property), 5551Handle(3, TableIndex.MethodSemantics), 5552Handle(4, TableIndex.MethodSemantics) 5636Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5637Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5638Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5639Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 5640Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5641Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5642Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5643Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5644Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5645Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5646Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5647Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5648Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5649Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5650Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5654Handle(1, TableIndex.MethodDef), 5655Handle(2, TableIndex.MethodDef), 5656Handle(5, TableIndex.MethodDef), 5657Handle(6, TableIndex.MethodDef), 5658Handle(1, TableIndex.Param), 5659Handle(1, TableIndex.CustomAttribute), 5660Handle(7, TableIndex.CustomAttribute), 5661Handle(12, TableIndex.CustomAttribute), 5662Handle(13, TableIndex.CustomAttribute), 5663Handle(14, TableIndex.CustomAttribute), 5664Handle(15, TableIndex.CustomAttribute), 5665Handle(1, TableIndex.Property), 5666Handle(2, TableIndex.Property), 5667Handle(5, TableIndex.MethodSemantics), 5668Handle(6, TableIndex.MethodSemantics) 5746Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5747Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 5748Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5749Row(1, TableIndex.Field, EditAndContinueOperation.Default), 5750Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5751Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5752Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5753Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5754Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5755Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5756Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5757Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5758Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5759Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5760Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 5765Handle(4, TableIndex.TypeDef), 5766Handle(1, TableIndex.Field), 5767Handle(2, TableIndex.Field), 5768Handle(1, TableIndex.MethodDef), 5769Handle(2, TableIndex.MethodDef), 5770Handle(5, TableIndex.MethodDef), 5771Handle(6, TableIndex.CustomAttribute), 5772Handle(7, TableIndex.CustomAttribute), 5773Handle(8, TableIndex.CustomAttribute), 5774Handle(9, TableIndex.CustomAttribute), 5775Handle(2, TableIndex.StandAloneSig), 5776Handle(1, TableIndex.Property) 5853Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5854Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5855Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 5856Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5857Row(1, TableIndex.Field, EditAndContinueOperation.Default), 5858Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5859Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5860Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5861Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5862Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5863Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5864Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5865Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5866Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 5867Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5868Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5869Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5870Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5871Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5875Handle(3, TableIndex.TypeDef), 5876Handle(1, TableIndex.Field), 5877Handle(2, TableIndex.Field), 5878Handle(1, TableIndex.MethodDef), 5879Handle(3, TableIndex.MethodDef), 5880Handle(4, TableIndex.MethodDef), 5881Handle(2, TableIndex.Param), 5882Handle(5, TableIndex.CustomAttribute), 5883Handle(2, TableIndex.StandAloneSig), 5884Handle(3, TableIndex.StandAloneSig), 5885Handle(1, TableIndex.Property), 5886Handle(2, TableIndex.Property), 5887Handle(2, TableIndex.MethodSemantics) 5956Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5957Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5958Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5959Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5960Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5961Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5962Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5967Handle(1, TableIndex.MethodDef), 5968Handle(3, TableIndex.MethodDef), 5969Handle(1, TableIndex.Param), 5970Handle(4, TableIndex.StandAloneSig), 5971Handle(1, TableIndex.Property), 5972Handle(2, TableIndex.Property), 5973Handle(3, TableIndex.MethodSemantics), 6022Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6023Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 6024Row(2, TableIndex.Property, EditAndContinueOperation.Default), 6025Row(2, TableIndex.Param, EditAndContinueOperation.Default), 6026Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 6031Handle(3, TableIndex.MethodDef), 6032Handle(2, TableIndex.Param), 6033Handle(5, TableIndex.StandAloneSig), 6034Handle(2, TableIndex.Property), 6035Handle(4, TableIndex.MethodSemantics) 6091Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6092Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6093Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6094Row(2, TableIndex.Param, EditAndContinueOperation.Default), 6095Row(3, TableIndex.Param, EditAndContinueOperation.Default), 6100Handle(1, TableIndex.MethodDef), 6101Handle(2, TableIndex.MethodDef), 6102Handle(1, TableIndex.Param), 6103Handle(2, TableIndex.Param), 6104Handle(3, TableIndex.Param), 6175Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6176Row(1, TableIndex.EventMap, EditAndContinueOperation.Default), 6177Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 6178Row(1, TableIndex.Event, EditAndContinueOperation.Default), 6179Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6180Row(1, TableIndex.Field, EditAndContinueOperation.Default), 6181Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6182Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6183Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6184Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 6185Row(2, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6186Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6187Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6188Row(2, TableIndex.Param, EditAndContinueOperation.Default), 6189Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6190Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6191Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6192Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6193Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6194Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 6197Handle(1, TableIndex.Field), 6198Handle(2, TableIndex.MethodDef), 6199Handle(3, TableIndex.MethodDef), 6200Handle(1, TableIndex.Param), 6201Handle(2, TableIndex.Param), 6202Handle(4, TableIndex.CustomAttribute), 6203Handle(5, TableIndex.CustomAttribute), 6204Handle(6, TableIndex.CustomAttribute), 6205Handle(7, TableIndex.CustomAttribute), 6206Handle(1, TableIndex.StandAloneSig), 6207Handle(1, TableIndex.EventMap), 6208Handle(1, TableIndex.Event), 6209Handle(1, TableIndex.MethodSemantics), 6210Handle(2, TableIndex.MethodSemantics)); 6230Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6231Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 6232Row(2, TableIndex.Event, EditAndContinueOperation.Default), 6233Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6234Row(2, TableIndex.Field, EditAndContinueOperation.Default), 6235Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6236Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6237Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6238Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6239Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6240Row(3, TableIndex.Param, EditAndContinueOperation.Default), 6241Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6242Row(4, TableIndex.Param, EditAndContinueOperation.Default), 6243Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6244Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6245Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6246Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6247Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6248Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 6251Handle(2, TableIndex.Field), 6252Handle(4, TableIndex.MethodDef), 6253Handle(5, TableIndex.MethodDef), 6254Handle(3, TableIndex.Param), 6255Handle(4, TableIndex.Param), 6256Handle(8, TableIndex.CustomAttribute), 6257Handle(9, TableIndex.CustomAttribute), 6258Handle(10, TableIndex.CustomAttribute), 6259Handle(11, TableIndex.CustomAttribute), 6260Handle(2, TableIndex.StandAloneSig), 6261Handle(2, TableIndex.Event), 6262Handle(3, TableIndex.MethodSemantics), 6263Handle(4, TableIndex.MethodSemantics)); 6309Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6310Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6311Row(1, TableIndex.Event, EditAndContinueOperation.Default), 6312Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6313Row(2, TableIndex.Field, EditAndContinueOperation.Default), 6314Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6315Row(3, TableIndex.Field, EditAndContinueOperation.Default), 6316Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6317Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6318Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6319Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6320Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6321Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6322Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6323Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 6328Handle(4, TableIndex.TypeDef), 6329Handle(2, TableIndex.Field), 6330Handle(3, TableIndex.Field), 6331Handle(1, TableIndex.MethodDef), 6332Handle(2, TableIndex.MethodDef), 6333Handle(5, TableIndex.MethodDef), 6334Handle(1, TableIndex.CustomAttribute), 6335Handle(7, TableIndex.CustomAttribute), 6336Handle(9, TableIndex.CustomAttribute), 6337Handle(10, TableIndex.CustomAttribute), 6338Handle(2, TableIndex.StandAloneSig), 6339Handle(1, TableIndex.Event) 6431Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6432Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 6433Row(1, TableIndex.Event, EditAndContinueOperation.Default), 6434Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6435Row(2, TableIndex.Field, EditAndContinueOperation.Default), 6436Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6437Row(3, TableIndex.Field, EditAndContinueOperation.Default), 6438Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6439Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6440Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6441Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6442Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6443Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6444Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 6449Handle(3, TableIndex.TypeDef), 6450Handle(2, TableIndex.Field), 6451Handle(3, TableIndex.Field), 6452Handle(1, TableIndex.MethodDef), 6453Handle(2, TableIndex.MethodDef), 6454Handle(4, TableIndex.MethodDef), 6455Handle(1, TableIndex.CustomAttribute), 6456Handle(7, TableIndex.CustomAttribute), 6457Handle(8, TableIndex.CustomAttribute), 6458Handle(2, TableIndex.StandAloneSig), 6459Handle(1, TableIndex.Event) 6549Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6550Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6551Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6552Row(1, TableIndex.Event, EditAndContinueOperation.Default), 6553Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 6554Row(2, TableIndex.Event, EditAndContinueOperation.Default), 6555Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6556Row(2, TableIndex.Field, EditAndContinueOperation.Default), 6557Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6558Row(3, TableIndex.Field, EditAndContinueOperation.Default), 6559Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6560Row(4, TableIndex.Field, EditAndContinueOperation.Default), 6561Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6562Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6563Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6564Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6565Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6566Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 6567Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6568Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 6569Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6570Row(3, TableIndex.Param, EditAndContinueOperation.Default), 6571Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6572Row(4, TableIndex.Param, EditAndContinueOperation.Default), 6573Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6574Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6575Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6576Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6577Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6578Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6579Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6580Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6581Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6582Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 6587Handle(4, TableIndex.TypeDef), 6588Handle(2, TableIndex.Field), 6589Handle(3, TableIndex.Field), 6590Handle(4, TableIndex.Field), 6591Handle(1, TableIndex.MethodDef), 6592Handle(2, TableIndex.MethodDef), 6593Handle(5, TableIndex.MethodDef), 6594Handle(6, TableIndex.MethodDef), 6595Handle(7, TableIndex.MethodDef), 6596Handle(3, TableIndex.Param), 6597Handle(4, TableIndex.Param), 6598Handle(1, TableIndex.CustomAttribute), 6599Handle(7, TableIndex.CustomAttribute), 6600Handle(9, TableIndex.CustomAttribute), 6601Handle(10, TableIndex.CustomAttribute), 6602Handle(11, TableIndex.CustomAttribute), 6603Handle(12, TableIndex.CustomAttribute), 6604Handle(13, TableIndex.CustomAttribute), 6605Handle(14, TableIndex.CustomAttribute), 6606Handle(2, TableIndex.StandAloneSig), 6607Handle(3, TableIndex.StandAloneSig), 6608Handle(1, TableIndex.Event), 6609Handle(2, TableIndex.Event), 6610Handle(3, TableIndex.MethodSemantics), 6611Handle(4, TableIndex.MethodSemantics) 6729Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6730Row(1, TableIndex.Event, EditAndContinueOperation.Default), 6731Row(2, TableIndex.Event, EditAndContinueOperation.Default), 6732Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6733Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6734Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6735Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 6736Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6737Row(2, TableIndex.Param, EditAndContinueOperation.Default), 6738Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6739Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6740Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6741Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6742Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6743Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6744Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6745Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 6750Handle(1, TableIndex.MethodDef), 6751Handle(2, TableIndex.MethodDef), 6752Handle(5, TableIndex.MethodDef), 6753Handle(6, TableIndex.MethodDef), 6754Handle(1, TableIndex.Param), 6755Handle(2, TableIndex.Param), 6756Handle(1, TableIndex.CustomAttribute), 6757Handle(7, TableIndex.CustomAttribute), 6758Handle(12, TableIndex.CustomAttribute), 6759Handle(13, TableIndex.CustomAttribute), 6760Handle(14, TableIndex.CustomAttribute), 6761Handle(15, TableIndex.CustomAttribute), 6762Handle(4, TableIndex.StandAloneSig), 6763Handle(1, TableIndex.Event), 6764Handle(2, TableIndex.Event), 6765Handle(5, TableIndex.MethodSemantics), 6766Handle(6, TableIndex.MethodSemantics) 6955Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 6956Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 6959Handle(2, TableIndex.TypeDef), 6960Handle(4, TableIndex.CustomAttribute)); 6976Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 6977Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6978Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 6981Handle(2, TableIndex.TypeDef), 6982Handle(4, TableIndex.CustomAttribute), 6983Handle(5, TableIndex.CustomAttribute)); 7094Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.Default), // adding a type def 7095Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7096Row(baseFieldCount + generation, TableIndex.Field, EditAndContinueOperation.Default), 7097Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7098Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7099Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7100Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7101Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7102Row(baseParameterCount + generation * 2 - 1, TableIndex.Param, EditAndContinueOperation.Default), 7103Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7104Row(baseParameterCount + generation * 2, TableIndex.Param, EditAndContinueOperation.Default), 7105hasAttribute ? Row(baseAttributeCount + generation, TableIndex.CustomAttribute, EditAndContinueOperation.Default) : default); // adding a new attribute row for attribute on C#* definition 7108Handle(baseTypeCount + generation, TableIndex.TypeDef), 7109Handle(baseFieldCount + generation, TableIndex.Field), 7110Handle(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef), 7111Handle(baseMethodCount + generation * 2, TableIndex.MethodDef), 7112Handle(baseParameterCount + generation * 2 - 1, TableIndex.Param), 7113Handle(baseParameterCount + generation * 2, TableIndex.Param), 7114hasAttribute ? Handle(baseAttributeCount + generation, TableIndex.CustomAttribute) : default); 7174Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 7175Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 7176Row(5, TableIndex.Param, EditAndContinueOperation.Default), 7177Row(6, TableIndex.Param, EditAndContinueOperation.Default), 7178Row(hasAttribute ? 9 : 8, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 7181Handle(5, TableIndex.TypeDef), 7182Handle(7, TableIndex.MethodDef), 7183Handle(5, TableIndex.Param), 7184Handle(6, TableIndex.Param), 7185Handle(hasAttribute ? 9 : 8, TableIndex.CustomAttribute)); 7253Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 7254Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7255Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7256Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 7257Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7258Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 7259Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7260Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7261Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 7265Handle(5, TableIndex.TypeDef), 7266Handle(5, TableIndex.MethodDef), 7267Handle(7, TableIndex.MethodDef), 7268Handle(8, TableIndex.MethodDef), 7269Handle(9, TableIndex.MethodDef), 7270Handle(8, TableIndex.CustomAttribute) 7311new CustomAttributeRow(Handle(1, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 7312new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 7313new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 7314new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 7315new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 7316new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 7317new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 7336new CustomAttributeRow(Handle(1, TableIndex.Event), Handle(10, TableIndex.MemberRef))); 7339Row(1, TableIndex.Event, EditAndContinueOperation.Default), 7340Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7341Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 7342Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 7345Handle(8, TableIndex.CustomAttribute), 7346Handle(1, TableIndex.Event), 7347Handle(3, TableIndex.MethodSemantics), 7348Handle(4, TableIndex.MethodSemantics)); 7556Assert.Equal(1, reader0.GetTableRowCount(TableIndex.NestedClass)); 7576Assert.Equal(2, reader1.GetTableRowCount(TableIndex.NestedClass)); 7579Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7580Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 7581Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7582Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7583Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 7584Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 7585Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7586Row(1, TableIndex.Field, EditAndContinueOperation.Default), 7587Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7588Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7589Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7590Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7591Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7592Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7593Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7594Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 7595Row(3, TableIndex.NestedClass, EditAndContinueOperation.Default)); 7598Handle(6, TableIndex.TypeRef), 7599Handle(4, TableIndex.TypeDef), 7600Handle(5, TableIndex.TypeDef), 7601Handle(1, TableIndex.Field), 7602Handle(1, TableIndex.MethodDef), 7603Handle(4, TableIndex.MethodDef), 7604Handle(5, TableIndex.MethodDef), 7605Handle(6, TableIndex.MethodDef), 7606Handle(5, TableIndex.MemberRef), 7607Handle(2, TableIndex.StandAloneSig), 7608Handle(2, TableIndex.AssemblyRef), 7609Handle(2, TableIndex.NestedClass), 7610Handle(3, TableIndex.NestedClass)); 7659Assert.Equal(4, reader0.GetTableRowCount(TableIndex.NestedClass)); 7672Assert.Equal(4, reader1.GetTableRowCount(TableIndex.NestedClass)); 7719Assert.Equal(1, reader0.GetTableRowCount(TableIndex.NestedClass)); 7737Assert.Equal(1, reader1.GetTableRowCount(TableIndex.NestedClass)); 7740Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7741Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 7742Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 7743Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 7744Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 7745Row(1, TableIndex.MethodSpec, EditAndContinueOperation.Default), 7746Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7747Row(1, TableIndex.TypeSpec, EditAndContinueOperation.Default), 7748Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 7749Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 7750Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7751Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 7752Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7753Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7754Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7755Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7756Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7757Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 7758Row(2, TableIndex.GenericParam, EditAndContinueOperation.Default), 7759Row(3, TableIndex.GenericParam, EditAndContinueOperation.Default), 7760Row(4, TableIndex.GenericParam, EditAndContinueOperation.Default), 7761Row(1, TableIndex.GenericParamConstraint, EditAndContinueOperation.Default)); 7764Handle(6, TableIndex.TypeRef), 7765Handle(4, TableIndex.TypeDef), 7766Handle(1, TableIndex.MethodDef), 7767Handle(4, TableIndex.MethodDef), 7768Handle(5, TableIndex.MethodDef), 7769Handle(5, TableIndex.MemberRef), 7770Handle(6, TableIndex.MemberRef), 7771Handle(7, TableIndex.MemberRef), 7772Handle(8, TableIndex.MemberRef), 7773Handle(2, TableIndex.StandAloneSig), 7774Handle(1, TableIndex.TypeSpec), 7775Handle(2, TableIndex.TypeSpec), 7776Handle(3, TableIndex.TypeSpec), 7777Handle(2, TableIndex.AssemblyRef), 7778Handle(2, TableIndex.NestedClass), 7779Handle(2, TableIndex.GenericParam), 7780Handle(3, TableIndex.GenericParam), 7781Handle(4, TableIndex.GenericParam), 7782Handle(1, TableIndex.MethodSpec), 7783Handle(1, TableIndex.GenericParamConstraint)); 7908Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7909Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7910Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 7913Handle(6, TableIndex.TypeRef), 7914Handle(2, TableIndex.MethodDef), 7915Handle(2, TableIndex.AssemblyRef)); 7974Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7975Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7976Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7977Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7978Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default)); 7981Handle(6, TableIndex.TypeRef), 7982Handle(6, TableIndex.MethodDef), 7983Handle(2, TableIndex.MethodImpl), 7984Handle(2, TableIndex.AssemblyRef)); 7999Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8000Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 8001Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default)); 8004Handle(7, TableIndex.TypeRef), 8005Handle(6, TableIndex.MethodDef), 8006Handle(3, TableIndex.AssemblyRef)); 8050Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8051Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 8052Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 8053Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 8056Handle(6, TableIndex.TypeRef), 8057Handle(2, TableIndex.MethodDef), 8058Handle(5, TableIndex.MemberRef), 8059Handle(2, TableIndex.AssemblyRef)); 8173Assert.Equal(1, reader1.GetTableRowCount(TableIndex.NestedClass)); 8200Assert.Equal(0, reader2.GetTableRowCount(TableIndex.NestedClass)); 8203Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8204Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 8205Row(1, TableIndex.Field, EditAndContinueOperation.Default), 8206Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 8207Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 8208Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 8209Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 8210Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 8211Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 8212Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 8213Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 8214Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 8215Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 8216Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 8217Row(3, TableIndex.Param, EditAndContinueOperation.Default), 8218Row(4, TableIndex.Param, EditAndContinueOperation.Default), 8219Row(5, TableIndex.Param, EditAndContinueOperation.Default), 8220Row(6, TableIndex.Param, EditAndContinueOperation.Default), 8221Row(7, TableIndex.Param, EditAndContinueOperation.Default), 8222Row(8, TableIndex.Param, EditAndContinueOperation.Default)); 8299new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(2, TableIndex.MethodDef)), 8300new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(1, TableIndex.MethodDef)), 8301new CustomAttributeRow(Handle(1, TableIndex.Event), Handle(2, TableIndex.MethodDef)), 8302new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 8303new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 8304new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 8305new CustomAttributeRow(Handle(1, TableIndex.GenericParam), Handle(2, TableIndex.MethodDef)), 8306new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 8307new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 8308new CustomAttributeRow(Handle(3, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), 8309new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 8310new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 8333Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8334Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8335Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 8336Row(2, TableIndex.Event, EditAndContinueOperation.Default), 8337Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8338Row(3, TableIndex.Field, EditAndContinueOperation.Default), 8339Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8340Row(4, TableIndex.Field, EditAndContinueOperation.Default), 8341Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8342Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 8343Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8344Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 8345Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8346Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 8347Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8348Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 8349Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 8350Row(2, TableIndex.Property, EditAndContinueOperation.Default), 8351Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 8352Row(8, TableIndex.Param, EditAndContinueOperation.Default), 8353Row(15, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 8354Row(9, TableIndex.Param, EditAndContinueOperation.Default), 8355Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8356Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8357Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8358Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8359Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8360Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8361Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8362Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8363Row(20, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8364Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 8365Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 8366Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 8367Row(2, TableIndex.GenericParam, EditAndContinueOperation.Default)); 8370Handle(3, TableIndex.Field), 8371Handle(4, TableIndex.Field), 8372Handle(12, TableIndex.MethodDef), 8373Handle(13, TableIndex.MethodDef), 8374Handle(14, TableIndex.MethodDef), 8375Handle(15, TableIndex.MethodDef), 8376Handle(8, TableIndex.Param), 8377Handle(9, TableIndex.Param), 8378Handle(7, TableIndex.CustomAttribute), 8379Handle(13, TableIndex.CustomAttribute), 8380Handle(14, TableIndex.CustomAttribute), 8381Handle(15, TableIndex.CustomAttribute), 8382Handle(16, TableIndex.CustomAttribute), 8383Handle(17, TableIndex.CustomAttribute), 8384Handle(18, TableIndex.CustomAttribute), 8385Handle(19, TableIndex.CustomAttribute), 8386Handle(20, TableIndex.CustomAttribute), 8387Handle(3, TableIndex.StandAloneSig), 8388Handle(4, TableIndex.StandAloneSig), 8389Handle(2, TableIndex.Event), 8390Handle(2, TableIndex.Property), 8391Handle(4, TableIndex.MethodSemantics), 8392Handle(5, TableIndex.MethodSemantics), 8393Handle(6, TableIndex.MethodSemantics), 8394Handle(2, TableIndex.GenericParam)); 8397new CustomAttributeRow(Handle(1, TableIndex.GenericParam), Handle(1, TableIndex.MethodDef)), 8398new CustomAttributeRow(Handle(2, TableIndex.Property), Handle(2, TableIndex.MethodDef)), 8399new CustomAttributeRow(Handle(2, TableIndex.Event), Handle(1, TableIndex.MethodDef)), 8400new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(1, TableIndex.MethodDef)), 8401new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(11, TableIndex.MemberRef)), 8402new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(12, TableIndex.MemberRef)), 8403new CustomAttributeRow(Handle(12, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), 8404new CustomAttributeRow(Handle(14, TableIndex.MethodDef), Handle(11, TableIndex.MemberRef)), 8405new CustomAttributeRow(Handle(15, TableIndex.MethodDef), Handle(11, TableIndex.MemberRef))); 8454Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8455Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 8456Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8457Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.M 8459Handle(7, TableIndex.TypeRef), 8460Handle(2, TableIndex.MethodDef), 8461Handle(2, TableIndex.AssemblyRef)); 8574Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8575Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 8576Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 8577Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8578Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 8581Handle(12, TableIndex.TypeRef), 8582Handle(13, TableIndex.TypeRef), 8583Handle(1, TableIndex.MethodDef), 8584Handle(2, TableIndex.StandAloneSig), 8585Handle(2, TableIndex.AssemblyRef)); 8676Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8677Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 8678Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 8679Row(1, TableIndex.Param, EditAndContinueOperation.Default), 8680Row(2, TableIndex.ImplMap, EditAndContinueOperation.Default)); 8683Handle(3, TableIndex.MethodDef), 8684Handle(1, TableIndex.Param), 8685Handle(2, TableIndex.ImplMap)); 8728Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8729Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 8730Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 8731Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 8732Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8733Row(3, TableIndex.Field, EditAndContinueOperation.Default), 8734Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8735Row(4, TableIndex.Field, EditAndContinueOperation.Default), 8736Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8737Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 8738Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 8739Row(3, TableIndex.FieldLayout, EditAndContinueOperation.Default), 8740Row(4, TableIndex.FieldLayout, EditAndContinueOperation.Default)); 8742Handle(6, TableIndex.TypeRef), 8743Handle(3, TableIndex.TypeDef), 8744Handle(3, TableIndex.Field), 8745Handle(4, TableIndex.Field), 8746Handle(2, TableIndex.MethodDef), 8747Handle(5, TableIndex.MemberRef), 8748Handle(2, TableIndex.ClassLayout), 8749Handle(3, TableIndex.FieldLayout), 8750Handle(4, TableIndex.FieldLayout), 8751Handle(2, TableIndex.AssemblyRef)); 9360Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 9361Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 9362Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 9363Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 9366Handle(6, TableIndex.TypeRef), 9367Handle(2, TableIndex.MethodDef), 9368Handle(2, TableIndex.AssemblyRef)); 13007Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 13008Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 13009Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 13010Row(1, TableIndex.Field, EditAndContinueOperation.Default), 13011Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 13012Row(2, TableIndex.Field, EditAndContinueOperation.Default), 13013Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 13014Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 13015Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 13016Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 13021Handle(3, TableIndex.TypeDef), 13022Handle(1, TableIndex.Field), 13023Handle(2, TableIndex.Field), 13024Handle(1, TableIndex.MethodDef), 13025Handle(3, TableIndex.MethodDef), 13026Handle(4, TableIndex.CustomAttribute), 13027Handle(1, TableIndex.StandAloneSig) 13116Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 13117Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 13118Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 13119Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 13122Handle(7, TableIndex.TypeRef), 13123Handle(2, TableIndex.MethodDef), 13124Handle(2, TableIndex.StandAloneSig), 13125Handle(2, TableIndex.AssemblyRef)); 16599Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 16600Row(21, TableIndex.TypeRef, EditAndContinueOperation.Default), 16601Row(22, TableIndex.TypeRef, EditAndContinueOperation.Default), 16602Row(23, TableIndex.TypeRef, EditAndContinueOperation.Default), 16603Row(4, TableIndex.TypeSpec, EditAndContinueOperation.Default), 16604Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 16605Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 16606Row(3, TableIndex.Param, EditAndContinueOperation.Default), 16607Row(23, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 16610Handle(21, TableIndex.TypeRef), 16611Handle(22, TableIndex.TypeRef), 16612Handle(23, TableIndex.TypeRef), 16613Handle(10, TableIndex.MethodDef), 16614Handle(3, TableIndex.Param), 16615Handle(23, TableIndex.CustomAttribute), 16616Handle(3, TableIndex.StandAloneSig), 16617Handle(4, TableIndex.TypeSpec), 16618Handle(3, TableIndex.AssemblyRef)); 16717Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 16718Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 16719Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16720Row(3, TableIndex.Field, EditAndContinueOperation.Default), 16721Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16722Row(4, TableIndex.Field, EditAndContinueOperation.Default), 16723Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16724Row(5, TableIndex.Field, EditAndContinueOperation.Default), 16725Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 16726Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16727Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 16728Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16729Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 16730Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16731Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 16732Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16733Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 16734Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16735Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 16736Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 16737Row(2, TableIndex.Property, EditAndContinueOperation.Default), 16738Row(16, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16739Row(9, TableIndex.Param, EditAndContinueOperation.Default), 16740Row(18, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16741Row(10, TableIndex.Param, EditAndContinueOperation.Default), 16742Row(19, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16743Row(11, TableIndex.Param, EditAndContinueOperation.Default), 16744Row(30, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16745Row(31, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16746Row(32, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16747Row(33, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16748Row(34, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16749Row(35, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16750Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 16751Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 16808Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16809Row(5, TableIndex.Field, EditAndContinueOperation.Default), 16810Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16811Row(21, TableIndex.MethodDef, EditAndContinueOperation.Default), 16812Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16813Row(22, TableIndex.MethodDef, EditAndContinueOperation.Default), 16814Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16815Row(23, TableIndex.MethodDef, EditAndContinueOperation.Default), 16816Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16817Row(24, TableIndex.MethodDef, EditAndContinueOperation.Default), 16818Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 16819Row(4, TableIndex.Property, EditAndContinueOperation.Default), 16820Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16821Row(15, TableIndex.Param, EditAndContinueOperation.Default), 16822Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16823Row(16, TableIndex.Param, EditAndContinueOperation.Default), 16824Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16825Row(17, TableIndex.Param, EditAndContinueOperation.Default), 16826Row(23, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16827Row(18, TableIndex.Param, EditAndContinueOperation.Default), 16828Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16829Row(19, TableIndex.Param, EditAndContinueOperation.Default), 16830Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16831Row(20, TableIndex.Param, EditAndContinueOperation.Default), 16832Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16833Row(21, TableIndex.Param, EditAndContinueOperation.Default), 16834Row(39, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16835Row(40, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16836Row(41, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16837Row(42, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16838Row(43, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16839Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 16840Row(7, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 16947Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16948Row(4, TableIndex.Field, EditAndContinueOperation.Default), 16949Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16950Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 16951Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16952Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 16953Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 16954Row(3, TableIndex.Property, EditAndContinueOperation.Default), 16955Row(20, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16956Row(12, TableIndex.Param, EditAndContinueOperation.Default), 16957Row(35, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16958Row(36, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16959Row(37, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16960Row(38, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16961Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 16962Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 17036Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 17037Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 17038Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 17039Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 17040Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 17041Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 17042Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), // Synthesized Main method 17043Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 17046Handle(8, TableIndex.TypeRef), 17047Handle(9, TableIndex.TypeRef), 17048Handle(10, TableIndex.TypeRef), 17049Handle(1, TableIndex.MethodDef), 17050Handle(1, TableIndex.Param), 17051Handle(7, TableIndex.MemberRef), 17052Handle(8, TableIndex.MemberRef), 17053Handle(2, TableIndex.AssemblyRef)); 17648Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 17649Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 17650Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17651Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17652Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17653Row(2, TableIndex.Field, EditAndContinueOperation.Default), 17654Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17655Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17656Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 17657Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17662Handle(4, TableIndex.TypeDef), 17663Handle(1, TableIndex.Field), 17664Handle(2, TableIndex.Field), 17665Handle(1, TableIndex.MethodDef), 17666Handle(4, TableIndex.MethodDef), 17667Handle(4, TableIndex.CustomAttribute), 17668Handle(2, TableIndex.StandAloneSig) 17755Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 17756Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 17757Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17758Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17759Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17760Row(2, TableIndex.Field, EditAndContinueOperation.Default), 17761Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17762Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17763Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 17764Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17769Handle(4, TableIndex.TypeDef), 17770Handle(1, TableIndex.Field), 17771Handle(2, TableIndex.Field), 17772Handle(1, TableIndex.MethodDef), 17773Handle(4, TableIndex.MethodDef), 17774Handle(4, TableIndex.CustomAttribute), 17775Handle(1, TableIndex.StandAloneSig) 17850Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17851Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default) 17855Handle(3, TableIndex.MethodDef), 17886Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 17887Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 17888Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17889Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17890Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17891Row(2, TableIndex.Field, EditAndContinueOperation.Default), 17892Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17893Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17894Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 17895Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17900Handle(3, TableIndex.TypeDef), 17901Handle(1, TableIndex.Field), 17902Handle(2, TableIndex.Field), 17903Handle(3, TableIndex.MethodDef), 17904Handle(4, TableIndex.MethodDef), 17905Handle(4, TableIndex.CustomAttribute), 17906Handle(1, TableIndex.StandAloneSig) 17978Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 17979Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 17980Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17981Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17982Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17983Row(2, TableIndex.Field, EditAndContinueOperation.Default), 17984Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17985Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17986Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 17987Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17991Handle(3, TableIndex.TypeDef), 17992Handle(1, TableIndex.Field), 17993Handle(2, TableIndex.Field), 17994Handle(1, TableIndex.MethodDef), 17995Handle(3, TableIndex.MethodDef), 17996Handle(4, TableIndex.CustomAttribute), 17997Handle(1, TableIndex.StandAloneSig) 18050Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 18054Handle(1, TableIndex.MethodDef), 18114Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18115Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 18116Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18117Row(1, TableIndex.Field, EditAndContinueOperation.Default), 18118Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18119Row(2, TableIndex.Field, EditAndContinueOperation.Default), 18120Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18121Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18122Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 18123Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 18124Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18129Handle(6, TableIndex.TypeDef), 18130Handle(1, TableIndex.Field), 18131Handle(2, TableIndex.Field), 18132Handle(3, TableIndex.MethodDef), 18133Handle(6, TableIndex.MethodDef), 18134Handle(6, TableIndex.CustomAttribute), 18135Handle(8, TableIndex.CustomAttribute), 18136Handle(1, TableIndex.StandAloneSig) 18141new CustomAttributeRow(Handle(3, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), 18142new CustomAttributeRow(Handle(6, TableIndex.TypeDef), Handle(7, TableIndex.MemberRef)) 18201Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18202Row(1, TableIndex.Param, EditAndContinueOperation.Default), 18203Row(2, TableIndex.Param, EditAndContinueOperation.Default), 18204Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 18205Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 18206Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18210Handle(3, TableIndex.MethodDef), 18211Handle(1, TableIndex.Param), 18212Handle(2, TableIndex.Param), 18213Handle(1, TableIndex.CustomAttribute), 18214Handle(5, TableIndex.CustomAttribute), 18215Handle(6, TableIndex.CustomAttribute) 18219new CustomAttributeRow(Handle(1, TableIndex.Param), Handle(2, TableIndex.MethodDef)), 18220new CustomAttributeRow(Handle(2, TableIndex.Param), Handle(2, TableIndex.MethodDef)), 18221new CustomAttributeRow(Handle(3, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)) 18274Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18275Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18276Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18277Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 18278Row(1, TableIndex.Param, EditAndContinueOperation.Default) 18283Handle(4, TableIndex.MethodDef), 18284Handle(1, TableIndex.Param), 18285Handle(1, TableIndex.StandAloneSig) 18321Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18322Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 18323Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18324Row(1, TableIndex.Field, EditAndContinueOperation.Default), 18325Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18326Row(2, TableIndex.Field, EditAndContinueOperation.Default), 18327Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18328Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18329Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 18330Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 18331Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18336Handle(4, TableIndex.TypeDef), 18337Handle(1, TableIndex.Field), 18338Handle(2, TableIndex.Field), 18339Handle(4, TableIndex.MethodDef), 18340Handle(5, TableIndex.MethodDef), 18341Handle(5, TableIndex.CustomAttribute), 18342Handle(6, TableIndex.CustomAttribute), 18343Handle(2, TableIndex.StandAloneSig) 18400Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18401Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18402Row(1, TableIndex.Param, EditAndContinueOperation.Default), 18403Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18408Handle(4, TableIndex.MethodDef), 18409Handle(1, TableIndex.Param), 18410Handle(6, TableIndex.CustomAttribute), 18411Handle(3, TableIndex.StandAloneSig) 18477Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18478Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 18479Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18480Row(3, TableIndex.Field, EditAndContinueOperation.Default), 18481Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18482Row(4, TableIndex.Field, EditAndContinueOperation.Default), 18483Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18484Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 18485Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18486Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 18487Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18492Handle(4, TableIndex.TypeDef), 18493Handle(3, TableIndex.Field), 18494Handle(4, TableIndex.Field), 18495Handle(1, TableIndex.MethodDef), 18496Handle(5, TableIndex.MethodDef), 18497Handle(6, TableIndex.MethodDef), 18498Handle(5, TableIndex.CustomAttribute), 18499Handle(1, TableIndex.StandAloneSig) 18571Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18572Row(5, TableIndex.Field, EditAndContinueOperation.Default), 18573Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18574Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18575Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18576Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 18581Handle(5, TableIndex.Field), 18582Handle(1, TableIndex.MethodDef), 18583Handle(4, TableIndex.MethodDef), 18584Handle(7, TableIndex.MethodDef) 18649Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18650Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 18655Handle(1, TableIndex.MethodDef), 18656Handle(7, TableIndex.MethodDef) 18750Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18751Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 18752Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18753Row(3, TableIndex.Field, EditAndContinueOperation.Default), 18754Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18755Row(4, TableIndex.Field, EditAndContinueOperation.Default), 18756Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 18757Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 18758Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18759Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 18760Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18765Handle(4, TableIndex.TypeDef), 18766Handle(3, TableIndex.Field), 18767Handle(4, TableIndex.Field), 18768Handle(2, TableIndex.MethodDef), 18769Handle(5, TableIndex.MethodDef), 18770Handle(6, TableIndex.MethodDef), 18771Handle(5, TableIndex.CustomAttribute), 18772Handle(1, TableIndex.StandAloneSig) 18940Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18941Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 18942Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18943Row(5, TableIndex.Field, EditAndContinueOperation.Default), 18944Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18945Row(6, TableIndex.Field, EditAndContinueOperation.Default), 18946Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 18947Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 18948Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 18949Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 18950Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18951Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 18952Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18957Handle(8, TableIndex.TypeDef), 18958Handle(5, TableIndex.Field), 18959Handle(6, TableIndex.Field), 18960Handle(5, TableIndex.MethodDef), 18961Handle(9, TableIndex.MethodDef), 18962Handle(10, TableIndex.MethodDef), 18963Handle(11, TableIndex.MethodDef), 18964Handle(12, TableIndex.MethodDef), 18965Handle(15, TableIndex.CustomAttribute), 18966Handle(4, TableIndex.StandAloneSig) 19116Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 19117Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default) 19122Handle(13, TableIndex.MethodDef), 19123Handle(16, TableIndex.MethodDef) 19252Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19253Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 19254Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19255Row(1, TableIndex.Field, EditAndContinueOperation.Default), 19256Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19257Row(2, TableIndex.Field, EditAndContinueOperation.Default), 19258Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 19259Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 19260Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 19261Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19262Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 19263Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19264Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19265Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19266Row(20, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 19271Handle(8, TableIndex.TypeDef), 19272Handle(1, TableIndex.Field), 19273Handle(2, TableIndex.Field), 19274Handle(5, TableIndex.MethodDef), 19275Handle(7, TableIndex.MethodDef), 19276Handle(9, TableIndex.MethodDef), 19277Handle(10, TableIndex.MethodDef), 19278Handle(15, TableIndex.CustomAttribute), 19279Handle(17, TableIndex.CustomAttribute), 19280Handle(19, TableIndex.CustomAttribute), 19281Handle(20, TableIndex.CustomAttribute), 19282Handle(1, TableIndex.StandAloneSig) 19462Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 19463Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 19464Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 19465Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 19466Row(20, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19467Row(22, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 19596Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19597Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 19598Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19599Row(1, TableIndex.Field, EditAndContinueOperation.Default), 19600Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19601Row(2, TableIndex.Field, EditAndContinueOperation.Default), 19602Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19603Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19604Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 19605Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19606Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 19607Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19608Row(2, TableIndex.Param, EditAndContinueOperation.Default), 19609Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 19613Handle(3, TableIndex.TypeDef), 19614Handle(1, TableIndex.Field), 19615Handle(2, TableIndex.Field), 19616Handle(1, TableIndex.MethodDef), 19617Handle(3, TableIndex.MethodDef), 19618Handle(4, TableIndex.MethodDef), 19619Handle(2, TableIndex.Param), 19620Handle(4, TableIndex.CustomAttribute), 19621Handle(1, TableIndex.StandAloneSig) 19687Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19688Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 19689Row(1, TableIndex.Param, EditAndContinueOperation.Default) 19694Handle(1, TableIndex.MethodDef), 19695Handle(3, TableIndex.MethodDef), 19696Handle(1, TableIndex.Param) 19760Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19761Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19762Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 19763Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19764Row(1, TableIndex.Field, EditAndContinueOperation.Default), 19765Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19766Row(2, TableIndex.Field, EditAndContinueOperation.Default), 19767Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19768Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19769Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 19770Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19771Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 19772Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19773Row(2, TableIndex.Param, EditAndContinueOperation.Default), 19774Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 19779Handle(3, TableIndex.TypeDef), 19780Handle(1, TableIndex.Field), 19781Handle(2, TableIndex.Field), 19782Handle(1, TableIndex.MethodDef), 19783Handle(3, TableIndex.MethodDef), 19784Handle(4, TableIndex.MethodDef), 19785Handle(2, TableIndex.Param), 19786Handle(4, TableIndex.CustomAttribute), 19787Handle(2, TableIndex.StandAloneSig), 19788Handle(3, TableIndex.StandAloneSig) 19855Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19856Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19857Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 19858Row(1, TableIndex.Param, EditAndContinueOperation.Default), 19863Handle(1, TableIndex.MethodDef), 19864Handle(3, TableIndex.MethodDef), 19865Handle(1, TableIndex.Param), 19866Handle(4, TableIndex.StandAloneSig) 19932Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19933Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 19934Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19935Row(1, TableIndex.Field, EditAndContinueOperation.Default), 19936Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19937Row(2, TableIndex.Field, EditAndContinueOperation.Default), 19938Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19939Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19940Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 19941Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19942Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 19943Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19944Row(2, TableIndex.Param, EditAndContinueOperation.Default), 19945Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19946Row(3, TableIndex.Param, EditAndContinueOperation.Default), 19947Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 19952Handle(3, TableIndex.TypeDef), 19953Handle(1, TableIndex.Field), 19954Handle(2, TableIndex.Field), 19955Handle(1, TableIndex.MethodDef), 19956Handle(3, TableIndex.MethodDef), 19957Handle(4, TableIndex.MethodDef), 19958Handle(2, TableIndex.Param), 19959Handle(3, TableIndex.Param), 19960Handle(4, TableIndex.CustomAttribute), 19961Handle(1, TableIndex.StandAloneSig) 20027Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20028Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 20029Row(1, TableIndex.Param, EditAndContinueOperation.Default), 20033Handle(1, TableIndex.MethodDef), 20034Handle(3, TableIndex.MethodDef), 20035Handle(1, TableIndex.Param), 20506Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 20511Handle(1, TableIndex.MethodDef) 20610Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 20611Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 20612Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20613Row(3, TableIndex.Field, EditAndContinueOperation.Default), 20614Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20615Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20616Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 20617Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default), 20618Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 20623Handle(5, TableIndex.TypeDef), 20624Handle(6, TableIndex.TypeDef), 20625Handle(3, TableIndex.Field), 20626Handle(1, TableIndex.MethodDef), 20627Handle(5, TableIndex.CustomAttribute), 20628Handle(2, TableIndex.ClassLayout), 20629Handle(2, TableIndex.FieldRva), 20630Handle(2, TableIndex.NestedClass) 20698Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 20699Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 20704Handle(1, TableIndex.MethodDef), 20705Handle(2, TableIndex.StandAloneSig) 20807Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 20808Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 20809Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 20810Row(2, TableIndex.Field, EditAndContinueOperation.Default), 20811Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 20812Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 20813Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default) 20818Handle(5, TableIndex.TypeDef), 20819Handle(2, TableIndex.Field), 20820Handle(1, TableIndex.MethodDef), 20821Handle(5, TableIndex.CustomAttribute), 20822Handle(2, TableIndex.StandAloneSig), 20823Handle(2, TableIndex.FieldRva) 20898Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 20903Handle(1, TableIndex.MethodDef) 21004Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 21005Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 21006Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21007Row(2, TableIndex.Field, EditAndContinueOperation.Default), 21008Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 21009Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21010Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 21011Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default), 21012Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 21017Handle(5, TableIndex.TypeDef), 21018Handle(6, TableIndex.TypeDef), 21019Handle(2, TableIndex.Field), 21020Handle(1, TableIndex.MethodDef), 21021Handle(5, TableIndex.CustomAttribute), 21022Handle(2, TableIndex.ClassLayout), 21023Handle(2, TableIndex.FieldRva), 21024Handle(2, TableIndex.NestedClass) 21086Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 21087Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 21088Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 21089Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21090Row(3, TableIndex.Field, EditAndContinueOperation.Default), 21091Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21092Row(4, TableIndex.Field, EditAndContinueOperation.Default), 21093Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 21094Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21095Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 21096Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21097Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 21098Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21099Row(3, TableIndex.Param, EditAndContinueOperation.Default), 21100Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21101Row(4, TableIndex.Param, EditAndContinueOperation.Default), 21102Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21103Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 21104Row(2, TableIndex.FieldRva, EditAndContinueOperation.Default), 21105Row(3, TableIndex.NestedClass, EditAndContinueOperation.Default), 21106Row(4, TableIndex.NestedClass, EditAndContinueOperation.Default) 21111Handle(6, TableIndex.TypeDef), 21112Handle(7, TableIndex.TypeDef), 21113Handle(8, TableIndex.TypeDef), 21114Handle(3, TableIndex.Field), 21115Handle(4, TableIndex.Field), 21116Handle(1, TableIndex.MethodDef), 21117Handle(5, TableIndex.MethodDef), 21118Handle(6, TableIndex.MethodDef), 21119Handle(3, TableIndex.Param), 21120Handle(4, TableIndex.Param), 21121Handle(6, TableIndex.CustomAttribute), 21122Handle(2, TableIndex.ClassLayout), 21123Handle(2, TableIndex.FieldRva), 21124Handle(3, TableIndex.NestedClass), 21125Handle(4, TableIndex.NestedClass) 21185Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 21190Handle(1, TableIndex.MethodDef) 21245Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 21246Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 21247Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 21248Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21249Row(1, TableIndex.Field, EditAndContinueOperation.Default), 21250Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21251Row(2, TableIndex.Field, EditAndContinueOperation.Default), 21252Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 21253Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21254Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 21255Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21256Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 21257Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21258Row(1, TableIndex.Param, EditAndContinueOperation.Default), 21259Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21260Row(2, TableIndex.Param, EditAndContinueOperation.Default), 21261Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21262Row(1, TableIndex.ClassLayout, EditAndContinueOperation.Default), 21263Row(1, TableIndex.FieldRva, EditAndContinueOperation.Default), 21264Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 21265Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 21270Handle(3, TableIndex.TypeDef), 21271Handle(4, TableIndex.TypeDef), 21272Handle(5, TableIndex.TypeDef), 21273Handle(1, TableIndex.Field), 21274Handle(2, TableIndex.Field), 21275Handle(1, TableIndex.MethodDef), 21276Handle(3, TableIndex.MethodDef), 21277Handle(4, TableIndex.MethodDef), 21278Handle(1, TableIndex.Param), 21279Handle(2, TableIndex.Param), 21280Handle(4, TableIndex.CustomAttribute), 21281Handle(1, TableIndex.ClassLayout), 21282Handle(1, TableIndex.FieldRva), 21283Handle(1, TableIndex.NestedClass), 21284Handle(2, TableIndex.NestedClass) 21351Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 21352Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 21353Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 21354Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21355Row(1, TableIndex.Field, EditAndContinueOperation.Default), 21356Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21357Row(2, TableIndex.Field, EditAndContinueOperation.Default), 21358Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 21359Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21360Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 21361Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21362Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 21363Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21364Row(4, TableIndex.Param, EditAndContinueOperation.Default), 21365Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21366Row(5, TableIndex.Param, EditAndContinueOperation.Default), 21367Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21368Row(1, TableIndex.ClassLayout, EditAndContinueOperation.Default), 21369Row(1, TableIndex.FieldRva, EditAndContinueOperation.Default), 21370Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 21371Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default) 21376Handle(3, TableIndex.TypeDef), 21377Handle(4, TableIndex.TypeDef), 21378Handle(5, TableIndex.TypeDef), 21379Handle(1, TableIndex.Field), 21380Handle(2, TableIndex.Field), 21381Handle(2, TableIndex.MethodDef), 21382Handle(4, TableIndex.MethodDef), 21383Handle(5, TableIndex.MethodDef), 21384Handle(4, TableIndex.Param), 21385Handle(5, TableIndex.Param), 21386Handle(4, TableIndex.CustomAttribute), 21387Handle(1, TableIndex.ClassLayout), 21388Handle(1, TableIndex.FieldRva), 21389Handle(1, TableIndex.NestedClass), 21390Handle(2, TableIndex.NestedClass) 21516Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 21517Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 21518Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 21519Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 21520Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21521Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 21522Row(1, TableIndex.Param, EditAndContinueOperation.Default), 21523Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21524Row(3, TableIndex.Param, EditAndContinueOperation.Default), 21525Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 21530Handle(4, TableIndex.TypeDef), 21531Handle(1, TableIndex.MethodDef), 21532Handle(4, TableIndex.MethodDef), 21533Handle(1, TableIndex.Param), 21534Handle(3, TableIndex.Param), 21535Handle(5, TableIndex.CustomAttribute), 21536Handle(3, TableIndex.StandAloneSig), 21537Handle(4, TableIndex.StandAloneSig) 21578Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 21579Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 21580Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 21581Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21582Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 21583Row(1, TableIndex.Param, EditAndContinueOperation.Default), 21584Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21585Row(3, TableIndex.Param, EditAndContinueOperation.Default), 21586Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 21591Handle(4, TableIndex.TypeDef), 21592Handle(1, TableIndex.MethodDef), 21593Handle(4, TableIndex.MethodDef), 21594Handle(1, TableIndex.Param), 21595Handle(3, TableIndex.Param), 21596Handle(5, TableIndex.CustomAttribute), 21597Handle(2, TableIndex.StandAloneSig) 21664Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 21665Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 21666Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 21667Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21668Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 21669Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21670Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 21671Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21672Row(2, TableIndex.Param, EditAndContinueOperation.Default), 21673Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21674Row(3, TableIndex.Param, EditAndContinueOperation.Default), 21675Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21676Row(4, TableIndex.Param, EditAndContinueOperation.Default), 21677Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21678Row(3, TableIndex.GenericParam, EditAndContinueOperation.Default), 21679Row(4, TableIndex.GenericParam, EditAndContinueOperation.Default), 21680Row(5, TableIndex.GenericParam, EditAndContinueOperation.Default), 21681Row(6, TableIndex.GenericParam, EditAndContinueOperation.Default) 21686Handle(5, TableIndex.TypeDef), 21687Handle(1, TableIndex.MethodDef), 21688Handle(4, TableIndex.MethodDef), 21689Handle(5, TableIndex.MethodDef), 21690Handle(2, TableIndex.Param), 21691Handle(3, TableIndex.Param), 21692Handle(4, TableIndex.Param), 21693Handle(6, TableIndex.CustomAttribute), 21694Handle(2, TableIndex.StandAloneSig), 21695Handle(3, TableIndex.GenericParam), 21696Handle(4, TableIndex.GenericParam), 21697Handle(5, TableIndex.GenericParam), 21698Handle(6, TableIndex.GenericParam) 21790Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 21791Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 21792Row(9, TableIndex.TypeDef, EditAndContinueOperation.Default), 21793Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21794Row(3, TableIndex.Field, EditAndContinueOperation.Default), 21795Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 21796Row(9, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21797Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 21798Row(9, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21799Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 21800Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21801Row(9, TableIndex.Param, EditAndContinueOperation.Default), 21802Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21803Row(10, TableIndex.Param, EditAndContinueOperation.Default), 21804Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21805Row(11, TableIndex.Param, EditAndContinueOperation.Default), 21806Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21807Row(12, TableIndex.Param, EditAndContinueOperation.Default), 21808Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21809Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21810Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21811Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21812Row(8, TableIndex.GenericParam, EditAndContinueOperation.Default), 21813Row(9, TableIndex.GenericParam, EditAndContinueOperation.Default), 21814Row(10, TableIndex.GenericParam, EditAndContinueOperation.Default), 21815Row(11, TableIndex.GenericParam, EditAndContinueOperation.Default), 21816Row(12, TableIndex.GenericParam, EditAndContinueOperation.Default) 21821Handle(8, TableIndex.TypeDef), 21822Handle(9, TableIndex.TypeDef), 21823Handle(3, TableIndex.Field), 21824Handle(6, TableIndex.MethodDef), 21825Handle(11, TableIndex.MethodDef), 21826Handle(12, TableIndex.MethodDef), 21827Handle(9, TableIndex.Param), 21828Handle(10, TableIndex.Param), 21829Handle(11, TableIndex.Param), 21830Handle(12, TableIndex.Param), 21831Handle(10, TableIndex.CustomAttribute), 21832Handle(11, TableIndex.CustomAttribute), 21833Handle(12, TableIndex.CustomAttribute), 21834Handle(13, TableIndex.CustomAttribute), 21835Handle(3, TableIndex.StandAloneSig), 21836Handle(8, TableIndex.GenericParam), 21837Handle(9, TableIndex.GenericParam), 21838Handle(10, TableIndex.GenericParam), 21839Handle(11, TableIndex.GenericParam), 21840Handle(12, TableIndex.GenericParam) 21861Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 21862Row(10, TableIndex.TypeDef, EditAndContinueOperation.Default), 21863Row(11, TableIndex.TypeDef, EditAndContinueOperation.Default), 21864Row(10, TableIndex.TypeDef, EditAndContinueOperation.AddField), 21865Row(4, TableIndex.Field, EditAndContinueOperation.Default), 21866Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 21867Row(11, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21868Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 21869Row(11, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 21870Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 21871Row(13, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21872Row(13, TableIndex.Param, EditAndContinueOperation.Default), 21873Row(13, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21874Row(14, TableIndex.Param, EditAndContinueOperation.Default), 21875Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21876Row(15, TableIndex.Param, EditAndContinueOperation.Default), 21877Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 21878Row(16, TableIndex.Param, EditAndContinueOperation.Default), 21879Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21880Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21881Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21882Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 21883Row(13, TableIndex.GenericParam, EditAndContinueOperation.Default), 21884Row(14, TableIndex.GenericParam, EditAndContinueOperation.Default), 21885Row(15, TableIndex.GenericParam, EditAndContinueOperation.Default), 21886Row(16, TableIndex.GenericParam, EditAndContinueOperation.Default), 21887Row(17, TableIndex.GenericParam, EditAndContinueOperation.Default) 21892Handle(10, TableIndex.TypeDef), 21893Handle(11, TableIndex.TypeDef), 21894Handle(4, TableIndex.Field), 21895Handle(6, TableIndex.MethodDef), 21896Handle(13, TableIndex.MethodDef), 21897Handle(14, TableIndex.MethodDef), 21898Handle(13, TableIndex.Param), 21899Handle(14, TableIndex.Param), 21900Handle(15, TableIndex.Param), 21901Handle(16, TableIndex.Param), 21902Handle(14, TableIndex.CustomAttribute), 21903Handle(15, TableIndex.CustomAttribute), 21904Handle(16, TableIndex.CustomAttribute), 21905Handle(17, TableIndex.CustomAttribute), 21906Handle(4, TableIndex.StandAloneSig), 21907Handle(13, TableIndex.GenericParam), 21908Handle(14, TableIndex.GenericParam), 21909Handle(15, TableIndex.GenericParam), 21910Handle(16, TableIndex.GenericParam), 21911Handle(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)
166Assert.Equal(9, metadataReader.GetTableRowCount(TableIndex.ClassLayout)); 484Assert.Equal(2, reader.GetTableRowCount(TableIndex.FieldLayout)); 532Assert.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)
1547Assert.Equal(forwardedTypeFullNames.Length, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1673Assert.Equal(1, peReader.GetTableRowCount(TableIndex.ExportedType)); 1684Assert.Equal(1, peReader1.GetTableRowCount(TableIndex.ExportedType)); 1727Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)); 1737Assert.Equal(0, peReader1.GetTableRowCount(TableIndex.ExportedType)); 1747Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)); 1817Assert.Equal(forwardedTypeFullNames.Length, peReader.GetTableRowCount(TableIndex.ExportedType));
Symbols\PartialPropertiesTests.cs (2)
866Assert.Equal(2, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 867Assert.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)
513internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation) 526TableIndex 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.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)
139internal 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)
444AddLocalScope(methodHandle, parentImport: default, MetadataTokens.LocalVariableHandle(_pdbBuilder.GetRowCount(TableIndex.LocalVariable) + 1), scope); 525AddLocalScope(methodHandle, parentImport, MetadataTokens.LocalVariableHandle(_pdbBuilder.GetRowCount(TableIndex.LocalVariable) + 1), childScope);
System.Reflection.Metadata (692)
System\Reflection\Metadata\Ecma335\MetadataAggregator.cs (3)
62if (baseReader.GetTableRowCount(TableIndex.EncMap) != 0) 95if (deltaReaders[i].GetTableRowCount(TableIndex.EncMap) == 0 || !deltaReaders[i].IsMinimalDelta) 122rowCounts[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