5027 references to TableIndex
Microsoft.CodeAnalysis (174)
Emit\EditAndContinue\DeltaMetadataWriter.cs (145)
105_typeDefs = new DefinitionIndex<ITypeDefinition>(this.TryGetExistingTypeDefIndex, sizes[(int)TableIndex.TypeDef]); 106_eventDefs = new DefinitionIndex<IEventDefinition>(this.TryGetExistingEventDefIndex, sizes[(int)TableIndex.Event]); 107_fieldDefs = new DefinitionIndex<IFieldDefinition>(this.TryGetExistingFieldDefIndex, sizes[(int)TableIndex.Field]); 108_methodDefs = new DefinitionIndex<IMethodDefinition>(this.TryGetExistingMethodDefIndex, sizes[(int)TableIndex.MethodDef]); 109_propertyDefs = new DefinitionIndex<IPropertyDefinition>(this.TryGetExistingPropertyDefIndex, sizes[(int)TableIndex.Property]); 110_parameterDefs = new DefinitionIndex<IParameterDefinition>(this.TryGetExistingParameterDefIndex, sizes[(int)TableIndex.Param]); 112_genericParameters = new GenericParameterIndex(sizes[(int)TableIndex.GenericParam]); 113_eventMap = new EventOrPropertyMapIndex(this.TryGetExistingEventMapIndex, sizes[(int)TableIndex.EventMap]); 114_propertyMap = new EventOrPropertyMapIndex(this.TryGetExistingPropertyMapIndex, sizes[(int)TableIndex.PropertyMap]); 115_methodImpls = new MethodImplIndex(this, sizes[(int)TableIndex.MethodImpl]); 123_assemblyRefIndex = new HeapOrReferenceIndex<AssemblyIdentity>(this, lastRowId: sizes[(int)TableIndex.AssemblyRef]); 124_moduleRefIndex = new HeapOrReferenceIndex<string>(this, lastRowId: sizes[(int)TableIndex.ModuleRef]); 125_memberRefIndex = new InstanceAndStructuralReferenceIndex<ITypeMemberReference>(this, new MemberRefComparer(this), lastRowId: sizes[(int)TableIndex.MemberRef]); 126_methodSpecIndex = new InstanceAndStructuralReferenceIndex<IGenericMethodInstanceReference>(this, new MethodSpecComparer(this), lastRowId: sizes[(int)TableIndex.MethodSpec]); 127_typeRefIndex = new TypeReferenceIndex(this, lastRowId: sizes[(int)TableIndex.TypeRef]); 128_typeSpecIndex = new InstanceAndStructuralReferenceIndex<ITypeReference>(this, new TypeSpecComparer(this), lastRowId: sizes[(int)TableIndex.TypeSpec]); 129_standAloneSignatureIndex = new HeapOrReferenceIndex<BlobHandle>(this, lastRowId: sizes[(int)TableIndex.StandAloneSig]); 149sizes[(int)TableIndex.TypeRef] = _typeRefIndex.Rows.Count; 150sizes[(int)TableIndex.TypeDef] = _typeDefs.GetAdded().Count; 151sizes[(int)TableIndex.Field] = _fieldDefs.GetAdded().Count; 152sizes[(int)TableIndex.MethodDef] = _methodDefs.GetAdded().Count; 153sizes[(int)TableIndex.Param] = _parameterDefs.GetAdded().Count; 154sizes[(int)TableIndex.MemberRef] = _memberRefIndex.Rows.Count; 155sizes[(int)TableIndex.StandAloneSig] = _standAloneSignatureIndex.Rows.Count; 156sizes[(int)TableIndex.EventMap] = _eventMap.GetAdded().Count; 157sizes[(int)TableIndex.Event] = _eventDefs.GetAdded().Count; 158sizes[(int)TableIndex.PropertyMap] = _propertyMap.GetAdded().Count; 159sizes[(int)TableIndex.Property] = _propertyDefs.GetAdded().Count; 160sizes[(int)TableIndex.MethodImpl] = _methodImpls.GetAdded().Count; 161sizes[(int)TableIndex.ModuleRef] = _moduleRefIndex.Rows.Count; 162sizes[(int)TableIndex.TypeSpec] = _typeSpecIndex.Rows.Count; 163sizes[(int)TableIndex.AssemblyRef] = _assemblyRefIndex.Rows.Count; 164sizes[(int)TableIndex.GenericParam] = _genericParameters.GetAdded().Count; 165sizes[(int)TableIndex.MethodSpec] = _methodSpecIndex.Rows.Count; 750if (_previousGeneration.OriginalMetadata.MetadataReader.GetTableRowCount(TableIndex.MethodDef) >= MetadataTokens.GetRowNumber(handle)) 946: _previousGeneration.OriginalMetadata.MetadataReader.GetTableRowCount(TableIndex.CustomAttribute); 1057_ = MetadataTokens.TryGetTableIndex(parentHandle.Kind, out var parentTableIndex); 1059var deletedMemberRefHandle = MetadataTokens.EntityHandle(TableIndex.MemberRef, 0); 1071Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncLog] == 0); 1072Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncMap] == 0); 1091PopulateEncLogTableRows(TableIndex.AssemblyRef, previousSizes, deltaSizes); 1092PopulateEncLogTableRows(TableIndex.ModuleRef, previousSizes, deltaSizes); 1093PopulateEncLogTableRows(TableIndex.MemberRef, previousSizes, deltaSizes); 1094PopulateEncLogTableRows(TableIndex.MethodSpec, previousSizes, deltaSizes); 1095PopulateEncLogTableRows(TableIndex.TypeRef, previousSizes, deltaSizes); 1096PopulateEncLogTableRows(TableIndex.TypeSpec, previousSizes, deltaSizes); 1097PopulateEncLogTableRows(TableIndex.StandAloneSig, previousSizes, deltaSizes); 1099PopulateEncLogTableRows(_typeDefs, TableIndex.TypeDef); 1100PopulateEncLogTableRows(TableIndex.EventMap, previousSizes, deltaSizes); 1101PopulateEncLogTableRows(TableIndex.PropertyMap, previousSizes, deltaSizes); 1103PopulateEncLogTableEventsOrProperties(_eventDefs, TableIndex.Event, EditAndContinueOperation.AddEvent, _eventMap, TableIndex.EventMap); 1104PopulateEncLogTableFieldsOrMethods(_fieldDefs, TableIndex.Field, EditAndContinueOperation.AddField); 1105PopulateEncLogTableFieldsOrMethods(_methodDefs, TableIndex.MethodDef, EditAndContinueOperation.AddMethod); 1106PopulateEncLogTableEventsOrProperties(_propertyDefs, TableIndex.Property, EditAndContinueOperation.AddProperty, _propertyMap, TableIndex.PropertyMap); 1110PopulateEncLogTableRows(TableIndex.Constant, previousSizes, deltaSizes); 1119PopulateEncLogTableRows(TableIndex.DeclSecurity, previousSizes, deltaSizes); 1120PopulateEncLogTableRows(TableIndex.ClassLayout, previousSizes, deltaSizes); 1121PopulateEncLogTableRows(TableIndex.FieldLayout, previousSizes, deltaSizes); 1122PopulateEncLogTableRows(TableIndex.MethodSemantics, previousSizes, deltaSizes); 1123PopulateEncLogTableRows(TableIndex.MethodImpl, previousSizes, deltaSizes); 1124PopulateEncLogTableRows(TableIndex.ImplMap, previousSizes, deltaSizes); 1125PopulateEncLogTableRows(TableIndex.FieldRva, previousSizes, deltaSizes); 1126PopulateEncLogTableRows(TableIndex.NestedClass, previousSizes, deltaSizes); 1127PopulateEncLogTableRows(TableIndex.GenericParam, previousSizes, deltaSizes); 1128PopulateEncLogTableRows(TableIndex.InterfaceImpl, previousSizes, deltaSizes); 1129PopulateEncLogTableRows(TableIndex.GenericParamConstraint, previousSizes, deltaSizes); 1134TableIndex table, 1137TableIndex mapTable) 1160TableIndex tableIndex, 1212private void PopulateEncLogTableRows<T>(DefinitionIndex<T> index, TableIndex tableIndex) 1223private void PopulateEncLogTableRows(TableIndex tableIndex, ImmutableArray<int> previousSizes, ImmutableArray<int> deltaSizes) 1228private void PopulateEncLogTableRows(TableIndex tableIndex, int firstRowId, int tokenCount) 1249for (var tableIndex = (TableIndex)0; tableIndex <= TableIndex.GenericParamConstraint; tableIndex++) 1253case TableIndex.TypeRef: 1254case TableIndex.InterfaceImpl: 1255case TableIndex.MemberRef: 1256case TableIndex.Constant: 1257case TableIndex.DeclSecurity: 1258case TableIndex.ClassLayout: 1259case TableIndex.FieldLayout: 1260case TableIndex.StandAloneSig: 1261case TableIndex.EventMap: 1262case TableIndex.PropertyMap: 1263case TableIndex.MethodSemantics: 1264case TableIndex.MethodImpl: 1265case TableIndex.ModuleRef: 1266case TableIndex.TypeSpec: 1267case TableIndex.ImplMap: 1268case TableIndex.FieldRva: 1269case TableIndex.NestedClass: 1270case TableIndex.GenericParam: 1271case TableIndex.AssemblyRef: 1272case TableIndex.MethodSpec: 1273case TableIndex.GenericParamConstraint: 1277case TableIndex.TypeDef: 1281case TableIndex.Field: 1285case TableIndex.MethodDef: 1289case TableIndex.Event: 1293case TableIndex.Property: 1297case TableIndex.Param: 1298AddRowNumberTokens(tokens, TableIndex.Param, paramEncMapRows); 1301case TableIndex.CustomAttribute: 1302AddRowNumberTokens(tokens, TableIndex.CustomAttribute, _customAttributeRowIds); 1322AddDefinitionTokens(debugTokens, TableIndex.MethodDebugInformation, _methodDefs); 1339var handledTables = new TableIndex[] 1341TableIndex.Module, 1342TableIndex.TypeRef, 1343TableIndex.TypeDef, 1344TableIndex.Field, 1345TableIndex.MethodDef, 1346TableIndex.Param, 1347TableIndex.MemberRef, 1348TableIndex.Constant, 1349TableIndex.CustomAttribute, 1350TableIndex.DeclSecurity, 1351TableIndex.ClassLayout, 1352TableIndex.FieldLayout, 1353TableIndex.StandAloneSig, 1354TableIndex.EventMap, 1355TableIndex.Event, 1356TableIndex.PropertyMap, 1357TableIndex.Property, 1358TableIndex.MethodSemantics, 1359TableIndex.MethodImpl, 1360TableIndex.ModuleRef, 1361TableIndex.TypeSpec, 1362TableIndex.ImplMap, 1366TableIndex.EncLog, 1367TableIndex.EncMap, 1368TableIndex.Assembly, 1369TableIndex.AssemblyRef, 1370TableIndex.MethodSpec, 1371TableIndex.NestedClass, 1372TableIndex.GenericParam, 1373TableIndex.InterfaceImpl, 1374TableIndex.GenericParamConstraint, 1379if (handledTables.Contains((TableIndex)i)) 1391TableIndex tableIndex, 1398private static void AddReferencedTokens(ArrayBuilder<EntityHandle> tokens, TableIndex tableIndex, int firstRowId, int nTokens) 1406private static void AddDefinitionTokens<T>(ArrayBuilder<EntityHandle> tokens, TableIndex tableIndex, DefinitionIndex<T> index) 1415private 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)
1719Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncLog] == 0); 1720Debug.Assert(typeSystemRowCounts[(int)TableIndex.EncMap] == 0); 1956metadata.SetCapacity(TableIndex.AssemblyRef, assemblyRefs.Count); 2018AddCustomAttributesToTable(sortedGenericParameters, TableIndex.GenericParam); 2093private void AddCustomAttributesToTable<T>(IEnumerable<T> parentList, TableIndex tableIndex) 2207metadata.SetCapacity(TableIndex.Event, eventDefs.Count); 2231metadata.SetCapacity(TableIndex.ExportedType, exportedTypes.Length); 2368metadata.SetCapacity(TableIndex.Field, fieldDefs.Count); 2435metadata.SetCapacity(TableIndex.File, _fileRefList.Count); 2576metadata.SetCapacity(TableIndex.MemberRef, memberRefs.Count); 2589metadata.SetCapacity(TableIndex.MethodImpl, methodImplList.Count); 2603metadata.SetCapacity(TableIndex.MethodSpec, methodSpecs.Count); 2616metadata.SetCapacity(TableIndex.MethodDef, methodDefs.Count); 2639metadata.SetCapacity(TableIndex.MethodSemantics, propertyDefs.Count * 2 + eventDefs.Count * 2); 2701metadata.SetCapacity(TableIndex.ModuleRef, moduleRefs.Count); 2741metadata.SetCapacity(TableIndex.Param, parameterDefs.Count); 2755metadata.SetCapacity(TableIndex.Property, propertyDefs.Count); 2769metadata.SetCapacity(TableIndex.TypeDef, typeDefs.Count); 2826metadata.SetCapacity(TableIndex.TypeRef, typeRefs.Count); 2886metadata.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)
218Assert.Equal(0, peFileReader.GetTableRowCount(TableIndex.File)); 219Assert.Equal(0, peFileReader.GetTableRowCount(TableIndex.ModuleRef)); 252Assert.Equal(2, reader.GetTableRowCount(TableIndex.File)); 262Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef));
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (2931)
Emit\EditAndContinue\EditAndContinueClosureTests.cs (277)
87Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 88Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 89Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 90Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 91Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 92Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 93Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 94Row(1, TableIndex.Field, EditAndContinueOperation.Default), 95Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 96Row(2, TableIndex.Field, EditAndContinueOperation.Default), 97Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 98Row(3, TableIndex.Field, EditAndContinueOperation.Default), 99Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 100Row(4, TableIndex.Field, EditAndContinueOperation.Default), 101Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 102Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 103Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 104Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 105Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 106Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 107Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 108Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 109Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 110Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 111Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 112Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 113Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 114Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 115Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 116Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 117Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 118Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 119Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 120Row(6, TableIndex.Param, EditAndContinueOperation.Default), 121Row(7, TableIndex.Param, EditAndContinueOperation.Default), 122Row(8, TableIndex.Param, EditAndContinueOperation.Default), 123Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 124Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 125Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 126Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 127Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 128Row(3, TableIndex.NestedClass, EditAndContinueOperation.Default) 270Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 271Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 272Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)); 333Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 334Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 335Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 336Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 404Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 405Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 406Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 407Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 408Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 409Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 459Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 460Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 461Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 512Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 513Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 514Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 573Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 574Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 575Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 576Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)); 626Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 627Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 628Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 629Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 681Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 682Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 683Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 684Row(1, TableIndex.Param, EditAndContinueOperation.Default), 685Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 736Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 737Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 738Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 739Row(1, TableIndex.Param, EditAndContinueOperation.Default), 740Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 793Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 794Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 795Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 796Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 935Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 936Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 937Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 938Row(1, TableIndex.Param, EditAndContinueOperation.Default), 939Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1011Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1012Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1013Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1014Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1015Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1016Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1017Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1018Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1019Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1020Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1021Row(3, TableIndex.Param, EditAndContinueOperation.Default)); 1077Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 1078Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1079Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)); 1138Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1139Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 1140Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 1141Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 1142Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 1143Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 1144Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 1145Row(21, TableIndex.MethodDef, EditAndContinueOperation.Default), 1146Row(6, TableIndex.Param, EditAndContinueOperation.Default), 1147Row(7, TableIndex.Param, EditAndContinueOperation.Default), 1148Row(8, TableIndex.Param, EditAndContinueOperation.Default), 1149Row(9, TableIndex.Param, EditAndContinueOperation.Default), 1150Row(10, TableIndex.Param, EditAndContinueOperation.Default), 1151Row(11, TableIndex.Param, EditAndContinueOperation.Default), 1152Row(12, TableIndex.Param, EditAndContinueOperation.Default)); 1227Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1228Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1229Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1230Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1231Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1232Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1233Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 1234Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 1235Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 1236Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 1237Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 1238Row(5, TableIndex.Param, EditAndContinueOperation.Default), 1239Row(6, TableIndex.Param, EditAndContinueOperation.Default), 1240Row(7, TableIndex.Param, EditAndContinueOperation.Default), 1241Row(8, TableIndex.Param, EditAndContinueOperation.Default), 1242Row(9, TableIndex.Param, EditAndContinueOperation.Default), 1243Row(10, TableIndex.Param, EditAndContinueOperation.Default), 1244Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1245Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1315Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1316Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1317Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1318Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1319Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 1320Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 1321Row(5, TableIndex.Param, EditAndContinueOperation.Default), 1322Row(6, TableIndex.Param, EditAndContinueOperation.Default), 1323Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1399Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1400Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1401Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1402Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1403Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1404Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1405Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1406Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1407Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1408Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1409Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 1410Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1411Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1412Row(4, TableIndex.Param, EditAndContinueOperation.Default), 1413Row(5, TableIndex.Param, EditAndContinueOperation.Default), 1414Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1415Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1416Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1489Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1490Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1491Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1492Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1493Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 1494Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1495Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1496Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1497Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1498Row(4, TableIndex.Param, EditAndContinueOperation.Default), 1499Row(5, TableIndex.Param, EditAndContinueOperation.Default), 1500Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 1571Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1572Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1573Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1574Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1575Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 1576Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1577Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1578Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1579Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 2812Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2813Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 2814Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 2815Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 2816Row(2, TableIndex.Param, EditAndContinueOperation.Default), 2817Row(3, TableIndex.Param, EditAndContinueOperation.Default)); 4172Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4173Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4174Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 4175Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4257Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4258Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4259Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 4260Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4331Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4332Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 4333Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4405Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4406Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4407Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4408Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4409Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 4494Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4495Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4496Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4497Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4498Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 4596Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4597Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4598Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4599Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 4600Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 4601Row(1, TableIndex.Param, EditAndContinueOperation.Default) 4651Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4652Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4653Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4654Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 4710Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4711Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4712Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4713Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 4762Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4763Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 4764Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 4765Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4766Row(3, TableIndex.Field, EditAndContinueOperation.Default), 4767Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4768Row(4, TableIndex.Field, EditAndContinueOperation.Default), 4769Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4770Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 4771Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4772Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 4773Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4774Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 4775Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4776Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 4777Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4778Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 4779Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4780Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default)); 4783Handle(4, TableIndex.TypeDef), 4784Handle(5, TableIndex.TypeDef), 4785Handle(3, TableIndex.Field), 4786Handle(4, TableIndex.Field), 4787Handle(6, TableIndex.MethodDef), 4788Handle(7, TableIndex.MethodDef), 4789Handle(8, TableIndex.MethodDef), 4790Handle(9, TableIndex.MethodDef), 4791Handle(10, TableIndex.MethodDef), 4792Handle(5, TableIndex.CustomAttribute), 4793Handle(2, TableIndex.StandAloneSig), 4794Handle(2, TableIndex.NestedClass)); 9378Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 9379Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 9380Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default) 9494Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 9495Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 9496Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 9497Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 9498Row(2, TableIndex.Field, EditAndContinueOperation.Default), 9499Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 9500Row(3, TableIndex.Field, EditAndContinueOperation.Default), 9501Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 9502Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 9503Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 9504Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 9505Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 9506Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 9507Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 9508Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9509Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9510Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 9511Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default)
Emit\EditAndContinue\EditAndContinuePdbTests.cs (43)
161Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 162Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 163Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 164Row(5, TableIndex.Field, EditAndContinueOperation.Default), 165Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 166Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 167Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 168Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 169Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 170Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 171Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default)); 178Handle(2, TableIndex.MethodDebugInformation), 179Handle(4, TableIndex.MethodDebugInformation), 180Handle(8, TableIndex.MethodDebugInformation), 181Handle(9, TableIndex.MethodDebugInformation), 182Handle(10, TableIndex.MethodDebugInformation), 183Handle(11, TableIndex.MethodDebugInformation)); 284Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 285Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 286Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 287Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 288Row(6, TableIndex.Field, EditAndContinueOperation.Default), 289Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 290Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 291Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 292Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 293Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 294Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 295Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 296Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 297Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 298Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 299Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 300Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 307Handle(1, TableIndex.MethodDebugInformation), 308Handle(2, TableIndex.MethodDebugInformation), 309Handle(4, TableIndex.MethodDebugInformation), 310Handle(8, TableIndex.MethodDebugInformation), 311Handle(9, TableIndex.MethodDebugInformation), 312Handle(10, TableIndex.MethodDebugInformation), 313Handle(11, TableIndex.MethodDebugInformation), 314Handle(12, TableIndex.MethodDebugInformation), 315Handle(13, TableIndex.MethodDebugInformation));
Emit\EditAndContinue\EditAndContinueStateMachineTests.cs (380)
72Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 73Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 74Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 75Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 76Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 77Row(1, TableIndex.Field, EditAndContinueOperation.Default), 78Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 79Row(2, TableIndex.Field, EditAndContinueOperation.Default), 80Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 81Row(3, TableIndex.Field, EditAndContinueOperation.Default), 82Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 83Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 84Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 85Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 86Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 87Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 88Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 89Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 90Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 91Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 92Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 93Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 94Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 95Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 96Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 97Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 98Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 99Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 100Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 101Row(1, TableIndex.Property, EditAndContinueOperation.Default), 102Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 103Row(2, TableIndex.Property, EditAndContinueOperation.Default), 104Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 105Row(1, TableIndex.Param, EditAndContinueOperation.Default), 106Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 107Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 108Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 109Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 110Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 111Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 112Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 113Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 114Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 115Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 116Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 117Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 118Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 119Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 120Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 121Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 122Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 123Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 124Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 125Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 126Row(2, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 127Row(3, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 128Row(4, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 129Row(5, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)); 132Handle(3, TableIndex.TypeDef), 133Handle(1, TableIndex.Field), 134Handle(2, TableIndex.Field), 135Handle(3, TableIndex.Field), 136Handle(2, TableIndex.MethodDef), 137Handle(3, TableIndex.MethodDef), 138Handle(4, TableIndex.MethodDef), 139Handle(5, TableIndex.MethodDef), 140Handle(6, TableIndex.MethodDef), 141Handle(7, TableIndex.MethodDef), 142Handle(8, TableIndex.MethodDef), 143Handle(9, TableIndex.MethodDef), 144Handle(10, TableIndex.MethodDef), 145Handle(1, TableIndex.Param), 146Handle(1, TableIndex.InterfaceImpl), 147Handle(2, TableIndex.InterfaceImpl), 148Handle(3, TableIndex.InterfaceImpl), 149Handle(4, TableIndex.InterfaceImpl), 150Handle(5, TableIndex.InterfaceImpl), 151Handle(4, TableIndex.CustomAttribute), 152Handle(5, TableIndex.CustomAttribute), 153Handle(6, TableIndex.CustomAttribute), 154Handle(7, TableIndex.CustomAttribute), 155Handle(8, TableIndex.CustomAttribute), 156Handle(9, TableIndex.CustomAttribute), 157Handle(10, TableIndex.CustomAttribute), 158Handle(11, TableIndex.CustomAttribute), 159Handle(12, TableIndex.CustomAttribute), 160Handle(1, TableIndex.StandAloneSig), 161Handle(2, TableIndex.StandAloneSig), 162Handle(1, TableIndex.PropertyMap), 163Handle(1, TableIndex.Property), 164Handle(2, TableIndex.Property), 165Handle(1, TableIndex.MethodSemantics), 166Handle(2, TableIndex.MethodSemantics), 167Handle(1, TableIndex.MethodImpl), 168Handle(2, TableIndex.MethodImpl), 169Handle(3, TableIndex.MethodImpl), 170Handle(4, TableIndex.MethodImpl), 171Handle(5, TableIndex.MethodImpl), 172Handle(6, TableIndex.MethodImpl), 173Handle(7, TableIndex.MethodImpl), 174Handle(1, TableIndex.NestedClass)); 260Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 261Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 262Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 263Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 264Row(1, TableIndex.Field, EditAndContinueOperation.Default), 265Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 266Row(2, TableIndex.Field, EditAndContinueOperation.Default), 267Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 268Row(3, TableIndex.Field, EditAndContinueOperation.Default), 269Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 270Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 271Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 272Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 273Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 274Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 275Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 276Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 277Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 278Row(1, TableIndex.Param, EditAndContinueOperation.Default), 279Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 280Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 281Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 282Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 283Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 284Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 285Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 286Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)); 366Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 367Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 368Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 369Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 370Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 371Row(2, TableIndex.Field, EditAndContinueOperation.Default), 372Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 373Row(3, TableIndex.Field, EditAndContinueOperation.Default), 374Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 375Row(4, TableIndex.Field, EditAndContinueOperation.Default), 376Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 377Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 378Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 379Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 380Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 381Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 382Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 383Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 384Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 385Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 386Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 387Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 388Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 389Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 390Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 391Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 392Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 393Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 394Row(1, TableIndex.Property, EditAndContinueOperation.Default), 395Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 396Row(2, TableIndex.Property, EditAndContinueOperation.Default), 397Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 398Row(1, TableIndex.Param, EditAndContinueOperation.Default), 399Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 400Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 401Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 402Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 403Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 404Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 405Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 406Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 407Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 408Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 409Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 410Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 411Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 412Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 413Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 414Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 415Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 416Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 417Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 418Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 419Row(2, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 420Row(3, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 421Row(4, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 422Row(5, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)); 468Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 469Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 470Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 471Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 472Row(1, TableIndex.Field, EditAndContinueOperation.Default), 473Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 474Row(2, TableIndex.Field, EditAndContinueOperation.Default), 475Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 476Row(3, TableIndex.Field, EditAndContinueOperation.Default), 477Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 478Row(4, TableIndex.Field, EditAndContinueOperation.Default), 479Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 480Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 481Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 482Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 483Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 484Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 485Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 486Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 487Row(1, TableIndex.Param, EditAndContinueOperation.Default), 488Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 489Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 490Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 491Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 492Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 493Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 494Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 495Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)); 539new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // row id 0 == delete 542Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 543Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 544Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Delete IteratorStateMachineAttribute 589new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // row id 0 == delete 590new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // row id 0 == delete 593Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 594Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 595Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Delete AsyncStateMachineAttribute 596Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Delete DebuggerStepThroughAttribute 659Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 660Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 661Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 662Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 663Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 664Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 665Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 666Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 667Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 668Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 669Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 670Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 671Row(1, TableIndex.Param, EditAndContinueOperation.Default), 672Row(2, TableIndex.Param, EditAndContinueOperation.Default), 673Row(3, TableIndex.Param, EditAndContinueOperation.Default), 674Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 675Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 676Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 677Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 678Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 679Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 766Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 767Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 768Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 769Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 770Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 771Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 985Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 986Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 987Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 988Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 989Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 990Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 3692Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3693Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3694Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3695Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3696Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3697Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3698Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3792Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3793Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3794Row(7, TableIndex.Field, EditAndContinueOperation.Default), 3795Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3796Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3797Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3798Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3799Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3800Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3901Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3902Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3903Row(7, TableIndex.Field, EditAndContinueOperation.Default), 3904Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3905Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3906Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3907Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3908Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3909Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4007Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4008Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4009Row(5, TableIndex.Field, EditAndContinueOperation.Default), 4010Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4011Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4012Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4013Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4014Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 4121Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4122Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4123Row(7, TableIndex.Field, EditAndContinueOperation.Default), 4124Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4125Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4126Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4127Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4128Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 7478Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7479Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7480Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7481Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7482Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7483Row(16, TableIndex.Field, EditAndContinueOperation.Default), 7484Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7485Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7486Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7487Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7488Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7489Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7490Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7491Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 7591Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7592Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7593Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7594Row(17, TableIndex.Field, EditAndContinueOperation.Default), 7595Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7596Row(18, TableIndex.Field, EditAndContinueOperation.Default), 7597Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 7598Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7599Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7600Row(2, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 7700Row(13, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7701Row(14, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7702Row(15, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7703Row(16, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7704Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7705Row(19, TableIndex.Field, EditAndContinueOperation.Default), 7706Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7707Row(20, TableIndex.Field, EditAndContinueOperation.Default), 7708Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7709Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7710Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7711Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7712Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7713Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7714Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7715Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 8264Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8265Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8266Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8267Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8268Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8269Row(11, TableIndex.Field, EditAndContinueOperation.Default), 8270Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 8271Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 8272Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 8273Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 8274Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8275Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8276Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8277Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 8408Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8409Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8410Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8411Row(12, TableIndex.Field, EditAndContinueOperation.Default), 8412Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 8413Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 8414Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8415Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 8583Row(13, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8584Row(14, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8585Row(15, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8586Row(16, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 8587Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8588Row(13, TableIndex.Field, EditAndContinueOperation.Default), 8589Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 8590Row(14, TableIndex.Field, EditAndContinueOperation.Default), 8591Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 8592Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 8593Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 8594Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 8595Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8596Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8597Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 8598Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 8967Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 8968Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)
Emit\EditAndContinue\EditAndContinueTestBase.cs (2)
147internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation) 152internal static EntityHandle Handle(int rowNumber, TableIndex table)
Emit\EditAndContinue\EditAndContinueTests.cs (2228)
85Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 86Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 87Row(1, TableIndex.Field, EditAndContinueOperation.Default), 88Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 89Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 90Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 91Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 96Handle(3, TableIndex.TypeDef), 97Handle(1, TableIndex.Field), 98Handle(2, TableIndex.MethodDef), 99Handle(3, TableIndex.MethodDef), 100Handle(4, TableIndex.CustomAttribute) 168Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 169Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 170Row(1, TableIndex.Field, EditAndContinueOperation.Default), 171Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 172Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 173Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 174Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 175Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 176Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 180Handle(3, TableIndex.TypeDef), 181Handle(1, TableIndex.Field), 182Handle(1, TableIndex.MethodDef), 183Handle(2, TableIndex.MethodDef), 184Handle(3, TableIndex.MethodDef), 185Handle(4, TableIndex.CustomAttribute) 534Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 535Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.F 538Handle(2, TableIndex.MethodDef), 539Handle(2, TableIndex.StandAloneSig)); 597Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 598Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 599Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 602Handle(1, TableIndex.MethodDef), 603Handle(1, TableIndex.Param), 604Handle(2, TableIndex.StandAloneSig)); 623Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 624Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 625Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 628Handle(1, TableIndex.MethodDef), 629Handle(1, TableIndex.Param), 630Handle(3, TableIndex.StandAloneSig)); 670Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 671Row(1, TableIndex.Param, EditAndContinueOperation.Default), 672Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 676Handle(4, TableIndex.MethodDef), 677Handle(1, TableIndex.Param), 678Handle(12, TableIndex.CustomAttribute) 717Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 718Row(1, TableIndex.Param, EditAndContinueOperation.Default) 722Handle(1, TableIndex.MethodDef), 723Handle(1, TableIndex.Param) 764Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 765Row(1, TableIndex.Param, EditAndContinueOperation.Default), 766Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 770Handle(3, TableIndex.MethodDef), 771Handle(1, TableIndex.Param), 772Handle(9, TableIndex.CustomAttribute) 825Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 826Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 827Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 828Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 829Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 830Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 831Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.F 834Handle(7, TableIndex.TypeRef), 835Handle(8, TableIndex.TypeRef), 836Handle(2, TableIndex.MethodDef), 837Handle(6, TableIndex.MemberRef), 838Handle(2, TableIndex.StandAloneSig), 839Handle(2, TableIndex.TypeSpec), 840Handle(2, TableIndex.AssemblyRef)); 869new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 870new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 871new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 874new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)) 891Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 892Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Row 4, so updating existing CustomAttribute 897Handle(7, TableIndex.MethodDef), 898Handle(4, TableIndex.CustomAttribute), 903new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)) 929Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 930Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 931Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating the existing custom attribute 932Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // adding a new CustomAttribute for method F 933Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // adding a new CustomAttribute for type C 938Handle(8, TableIndex.TypeDef), 939Handle(7, TableIndex.MethodDef), 940Handle(4, TableIndex.CustomAttribute), 941Handle(5, TableIndex.CustomAttribute), 942Handle(6, TableIndex.CustomAttribute), 947new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 948new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 949new CustomAttributeRow(Handle(8, TableIndex.TypeDef), Handle(5, TableIndex.MethodDef)), 967Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 968Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating the existing custom attribute 969Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // updating a row that was new in Generation 2 970Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) // adding a new CustomAttribute, and skipping row 6 which is not for the method being emitted 975Handle(7, TableIndex.MethodDef), 976Handle(4, TableIndex.CustomAttribute), 977Handle(5, TableIndex.CustomAttribute), 978Handle(7, TableIndex.CustomAttribute), 983new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), 984new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 985new CustomAttributeRow(Handle(7, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 1025new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1026new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1027new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1030new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 1033new CustomAttributeRow(Handle(9, TableIndex.TypeDef), Handle(1, TableIndex.MethodDef)), 1036new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 1039new CustomAttributeRow(Handle(10, TableIndex.TypeDef), Handle(2, TableIndex.MethodDef)) 1066Handle(8, TableIndex.MethodDef), 1067Handle(10, TableIndex.MethodDef), 1068Handle(4, TableIndex.CustomAttribute), 1069Handle(6, TableIndex.CustomAttribute), 1070Handle(8, TableIndex.CustomAttribute), 1071Handle(9, TableIndex.CustomAttribute), 1072Handle(10, TableIndex.CustomAttribute) 1077Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 1078Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1079Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // update existing row 1080Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // update existing row 1081Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // add new row 1082Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // add new row 1083Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default),// add new row 1088new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), 1089new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), 1090new CustomAttributeRow(Handle(8, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), 1091new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), 1092new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)), 1138new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1139new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1140new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1141new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 1164new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // Parent row id is 0, signifying a delete 1167Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1168Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 1169Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 1170Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 1171Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1172Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1173Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so updating existing CustomAttribute 1176Handle(7, TableIndex.TypeRef), 1177Handle(8, TableIndex.TypeRef), 1178Handle(2, TableIndex.MethodDef), 1179Handle(6, TableIndex.MemberRef), 1180Handle(4, TableIndex.CustomAttribute), 1181Handle(2, TableIndex.StandAloneSig), 1182Handle(2, TableIndex.AssemblyRef)); 1201new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(7, TableIndex.MemberRef))); 1204Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1205Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 1206Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 1207Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 1208Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 1209Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 1210Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1211Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1212Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, updating the original row back to a real one 1215Handle(9, TableIndex.TypeRef), 1216Handle(10, TableIndex.TypeRef), 1217Handle(11, TableIndex.TypeRef), 1218Handle(2, TableIndex.MethodDef), 1219Handle(7, TableIndex.MemberRef), 1220Handle(8, TableIndex.MemberRef), 1221Handle(4, TableIndex.CustomAttribute), 1222Handle(3, TableIndex.StandAloneSig), 1223Handle(3, TableIndex.AssemblyRef)); 1262new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1263new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1264new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef))); 1287new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(5, TableIndex.MemberRef))); 1290Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1291Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 1292Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 1293Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 1294Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 1295Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 1296Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1297Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1298Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so adding a new CustomAttribute 1301Handle(6, TableIndex.TypeRef), 1302Handle(7, TableIndex.TypeRef), 1303Handle(8, TableIndex.TypeRef), 1304Handle(2, TableIndex.MethodDef), 1305Handle(5, TableIndex.MemberRef), 1306Handle(6, TableIndex.MemberRef), 1307Handle(4, TableIndex.CustomAttribute), 1308Handle(2, TableIndex.StandAloneSig), 1309Handle(2, TableIndex.AssemblyRef)); 1327new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef))); // 0, delete 1330Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1331Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 1332Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1333Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1334Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, so updating existing CustomAttribute 1337Handle(9, TableIndex.TypeRef), 1338Handle(2, TableIndex.MethodDef), 1339Handle(4, TableIndex.CustomAttribute), 1340Handle(3, TableIndex.StandAloneSig), 1341Handle(3, TableIndex.AssemblyRef)); 1359new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(7, TableIndex.MemberRef))); 1362Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 1363Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 1364Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 1365Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 1366Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 1367Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 1368Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1369Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1370Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, update the previously deleted row 1373Handle(10, TableIndex.TypeRef), 1374Handle(11, TableIndex.TypeRef), 1375Handle(12, TableIndex.TypeRef), 1376Handle(2, TableIndex.MethodDef), 1377Handle(7, TableIndex.MemberRef), 1378Handle(8, TableIndex.MemberRef), 1379Handle(4, TableIndex.CustomAttribute), 1380Handle(4, TableIndex.StandAloneSig), 1381Handle(4, TableIndex.AssemblyRef)); 1413new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1414new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1415new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1418new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // Row 4 1419new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // Row 5 1422new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // Row 6 1425new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), // Row 7 1426new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), // Row 8 1448Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1449Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1450Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1451Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1452Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1453Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1454Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1455Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1456Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1461Handle(9, TableIndex.MethodDef), 1462Handle(10, TableIndex.MethodDef), 1463Handle(11, TableIndex.MethodDef), 1464Handle(4, TableIndex.CustomAttribute), 1465Handle(5, TableIndex.CustomAttribute), 1466Handle(6, TableIndex.CustomAttribute), 1467Handle(7, TableIndex.CustomAttribute), 1468Handle(8, TableIndex.CustomAttribute), 1469Handle(9, TableIndex.CustomAttribute), 1474new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A2] delete 1475new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A5] delete 1476new CustomAttributeRow(Handle(9, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // F [A1] -> [A2] 1477new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)),// G [A3] -> [A4] 1478new CustomAttributeRow(Handle(10, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)),// G [A3] add with RowId 9 1479new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)),// H [A6] -> [A7] 1500Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 1501Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1502Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1503Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1504Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1505Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1506Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1507Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1512Handle(10, TableIndex.MethodDef), 1513Handle(11, TableIndex.MethodDef), 1514Handle(6, TableIndex.CustomAttribute), 1515Handle(7, TableIndex.CustomAttribute), 1516Handle(8, TableIndex.CustomAttribute), 1517Handle(9, TableIndex.CustomAttribute), 1518Handle(10, TableIndex.CustomAttribute), 1519Handle(11, TableIndex.CustomAttribute), 1524new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // G [A4] delete 1525new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // G [A3] delete 1526new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(5, TableIndex.MethodDef)), // H [A5] 1527new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(6, TableIndex.MethodDef)), // H [A6] 1528new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(7, TableIndex.MethodDef)), // H [A7] add with RowId 10 1529new CustomAttributeRow(Handle(11, TableIndex.MethodDef), Handle(8, TableIndex.MethodDef)), // H [A8] add with RowId 11 1549Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 1550Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1551Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1552Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1553Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1558Handle(11, TableIndex.MethodDef), 1559Handle(7, TableIndex.CustomAttribute), 1560Handle(8, TableIndex.CustomAttribute), 1561Handle(10, TableIndex.CustomAttribute), 1562Handle(11, TableIndex.CustomAttribute), 1567new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A5] delete 1568new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A6] delete 1569new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A7] delete 1570new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // H [A8] delete 1600new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1601new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1602new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1621Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1622Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1627Handle(6, TableIndex.MethodDef), 1628Handle(4, TableIndex.CustomAttribute), 1633new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // G: [A1] add RowId 4 1652Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1653Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1658Handle(5, TableIndex.MethodDef), 1659Handle(5, TableIndex.CustomAttribute), 1664new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // F: [A2] add RowId 5 1684Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1685Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1686Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1687Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1692Handle(5, TableIndex.MethodDef), 1693Handle(6, TableIndex.MethodDef), 1694Handle(4, TableIndex.CustomAttribute), 1695Handle(5, TableIndex.CustomAttribute), 1700new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // G: [A2] -> [A4] 1701new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(4, TableIndex.MethodDef)), // F: [A1] -> [A3] 1729new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1730new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1731new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1734new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), // Row 4 1752Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1753Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1754Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1759Handle(4, TableIndex.MethodDef), 1760Handle(4, TableIndex.CustomAttribute), 1761Handle(5, TableIndex.CustomAttribute), 1766new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), // F [A1] -> [A2] 1767new CustomAttributeRow(Handle(4, TableIndex.MethodDef), Handle(3, TableIndex.MethodDef)), // F [A3] add RowId 5 1785Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1786Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1787Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1792Handle(4, TableIndex.MethodDef), 1793Handle(4, TableIndex.CustomAttribute), 1794Handle(5, TableIndex.CustomAttribute), 1799new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A2] delete 1800new CustomAttributeRow(Handle(0, TableIndex.MethodDef), Handle(0, TableIndex.MemberRef)), // F [A3] delete 1841new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 1842new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 1843new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 1844new CustomAttributeRow(Handle(3, TableIndex.TypeDef), Handle(4, TableIndex.MemberRef))); 1865new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(8, TableIndex.MemberRef))); 1868Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1869Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 1870Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1871Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1872Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // row 5 = new custom attribute 1875Handle(1, TableIndex.MethodDef), 1876Handle(5, TableIndex.MethodDef), 1877Handle(1, TableIndex.Param), 1878Handle(5, TableIndex.CustomAttribute), 1879Handle(2, TableIndex.StandAloneSig)); 2274g.VerifyTableSize(TableIndex.MethodDef, 6); 2305Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 2306Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2307Row(4, TableIndex.Field, EditAndContinueOperation.Default), 2308Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 2309Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 2310Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 2311Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2312Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 2313Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 2317Handle(4, TableIndex.TypeDef), 2318Handle(4, TableIndex.Field), 2319Handle(1, TableIndex.MethodDef), 2320Handle(5, TableIndex.MethodDef), 2321Handle(6, TableIndex.MethodDef), 2322Handle(7, TableIndex.MethodDef), 2323Handle(5, TableIndex.CustomAttribute) 2609Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default) 2614Handle(2, TableIndex.MethodDef) 2759Row(1, TableIndex.Property, EditAndContinueOperation.Default), 2760Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 2761Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 2766Handle(4, TableIndex.CustomAttribute), 2767Handle(1, TableIndex.Property), 2768Handle(2, TableIndex.MethodSemantics) 2808Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 2813Handle(1, TableIndex.MethodDef) 2871Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 2872Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 2873Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 2874Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 2875Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 2876Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 2877Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2878Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2879Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 2880Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); // Row 4, a new attribute 2883Handle(6, TableIndex.TypeRef), 2884Handle(7, TableIndex.TypeRef), 2885Handle(8, TableIndex.TypeRef), 2886Handle(3, TableIndex.MethodDef), 2887Handle(5, TableIndex.MemberRef), 2888Handle(6, TableIndex.MemberRef), 2889Handle(4, TableIndex.CustomAttribute), 2890Handle(1, TableIndex.StandAloneSig), 2891Handle(2, TableIndex.AssemblyRef)); 2938new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 2939new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 2940new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef))); 2965new CustomAttributeRow(Handle(1, TableIndex.Param), Handle(5, TableIndex.MemberRef))); 2968Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 2969Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 2970Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 2971Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 2972Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2973Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 2974Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2975Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), // New method, G 2976Row(1, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param 2977Row(2, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param 2978Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), // New param on method, G 2979Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Support for the above 2980Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 2983Handle(6, TableIndex.TypeRef), 2984Handle(7, TableIndex.TypeRef), 2985Handle(2, TableIndex.MethodDef), 2986Handle(4, TableIndex.MethodDef), 2987Handle(1, TableIndex.Param), 2988Handle(2, TableIndex.Param), 2989Handle(3, TableIndex.Param), 2990Handle(5, TableIndex.MemberRef), 2991Handle(4, TableIndex.CustomAttribute), 2992Handle(2, TableIndex.StandAloneSig), 2993Handle(2, TableIndex.AssemblyRef)); 3012new CustomAttributeRow(Handle(3, TableIndex.Param), Handle(6, TableIndex.MemberRef))); 3015Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3016Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 3017Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3018Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 3019Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3020Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Update existing param, from the first delta 3021Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3024Handle(8, TableIndex.TypeRef), 3025Handle(9, TableIndex.TypeRef), 3026Handle(4, TableIndex.MethodDef), 3027Handle(3, TableIndex.Param), 3028Handle(6, TableIndex.MemberRef), 3029Handle(5, TableIndex.CustomAttribute), 3030Handle(3, TableIndex.AssemblyRef)); 3075new CustomAttributeRow(Handle(3, TableIndex.Param), Handle(1, TableIndex.MethodDef)), 3076new CustomAttributeRow(Handle(4, TableIndex.Param), Handle(1, TableIndex.MethodDef))); 3079Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3080Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 3081Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 3082Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 3083Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 3084Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3085Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3086Row(3, TableIndex.Param, EditAndContinueOperation.Default), // Updating existing parameter defs 3087Row(4, TableIndex.Param, EditAndContinueOperation.Default), 3088Row(5, TableIndex.Param, EditAndContinueOperation.Default), 3089Row(6, TableIndex.Param, EditAndContinueOperation.Default), 3090Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Adding new custom attribute rows 3091Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3094Handle(10, TableIndex.TypeRef), 3095Handle(11, TableIndex.TypeRef), 3096Handle(12, TableIndex.TypeRef), 3097Handle(13, TableIndex.TypeRef), 3098Handle(3, TableIndex.MethodDef), 3099Handle(4, TableIndex.MethodDef), 3100Handle(3, TableIndex.Param), 3101Handle(4, TableIndex.Param), 3102Handle(5, TableIndex.Param), 3103Handle(6, TableIndex.Param), 3104Handle(4, TableIndex.CustomAttribute), 3105Handle(5, TableIndex.CustomAttribute), 3106Handle(2, TableIndex.AssemblyRef)); 3148new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 3149new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 3150new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 3151new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 3152new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 3153new CustomAttributeRow(Handle(13, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 3195new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(5, TableIndex.MethodDef)), // X 3196new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(2, TableIndex.MethodDef)), // E.A 3197new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(4, TableIndex.MethodDef)), // _x 3198new CustomAttributeRow(Handle(14, TableIndex.TypeDef), Handle(1, TableIndex.MethodDef)), // E 3199new CustomAttributeRow(Handle(15, TableIndex.TypeDef), Handle(3, TableIndex.MethodDef)), // C 3200new CustomAttributeRow(Handle(16, TableIndex.TypeDef), Handle(6, TableIndex.MethodDef)), // D 3205Row(14, TableIndex.TypeDef, EditAndContinueOperation.Default), 3206Row(15, TableIndex.TypeDef, EditAndContinueOperation.Default), 3207Row(16, TableIndex.TypeDef, EditAndContinueOperation.Default), 3208Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3209Row(3, TableIndex.Field, EditAndContinueOperation.Default), 3210Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3211Row(2, TableIndex.Constant, EditAndContinueOperation.Default), 3212Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3213Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3214Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3215Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3216Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3217Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3218Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 3223Handle(14, TableIndex.TypeDef), 3224Handle(15, TableIndex.TypeDef), 3225Handle(16, TableIndex.TypeDef), 3226Handle(2, TableIndex.Field), 3227Handle(3, TableIndex.Field), 3228Handle(2, TableIndex.Constant), 3229Handle(7, TableIndex.CustomAttribute), 3230Handle(8, TableIndex.CustomAttribute), 3231Handle(9, TableIndex.CustomAttribute), 3232Handle(10, TableIndex.CustomAttribute), 3233Handle(11, TableIndex.CustomAttribute), 3234Handle(12, TableIndex.CustomAttribute), 3235Handle(1, TableIndex.Property), 3236Handle(2, TableIndex.MethodSemantics) 3276new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(11, TableIndex.MethodDef)),// X 3277new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(8, TableIndex.MethodDef)), // E.A 3278new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(10, TableIndex.MethodDef)), // _x 3279new CustomAttributeRow(Handle(14, TableIndex.TypeDef), Handle(7, TableIndex.MethodDef)), // E 3280new CustomAttributeRow(Handle(15, TableIndex.TypeDef), Handle(9, TableIndex.MethodDef)), // C 3281new CustomAttributeRow(Handle(16, TableIndex.TypeDef), Handle(12, TableIndex.MethodDef)),// D 3286Row(14, TableIndex.TypeDef, EditAndContinueOperation.Default), 3287Row(15, TableIndex.TypeDef, EditAndContinueOperation.Default), 3288Row(16, TableIndex.TypeDef, EditAndContinueOperation.Default), 3289Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3290Row(3, TableIndex.Field, EditAndContinueOperation.Default), 3291Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3292Row(3, TableIndex.Constant, EditAndContinueOperation.Default), 3293Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), // Same row numbers as previous gen 3294Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3295Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3296Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3297Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3298Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3299Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 3304Handle(14, TableIndex.TypeDef), 3305Handle(15, TableIndex.TypeDef), 3306Handle(16, TableIndex.TypeDef), 3307Handle(2, TableIndex.Field), 3308Handle(3, TableIndex.Field), 3309Handle(3, TableIndex.Constant), 3310Handle(7, TableIndex.CustomAttribute), 3311Handle(8, TableIndex.CustomAttribute), 3312Handle(9, TableIndex.CustomAttribute), 3313Handle(10, TableIndex.CustomAttribute), 3314Handle(11, TableIndex.CustomAttribute), 3315Handle(12, TableIndex.CustomAttribute), 3316Handle(1, TableIndex.Property), 3317Handle(3, TableIndex.MethodSemantics) 3383Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3384Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3385Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3386Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3387Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3388Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3389Row(1, TableIndex.Constant, EditAndContinueOperation.Default), 3390Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3393Handle(3, TableIndex.MethodDef), 3394Handle(1, TableIndex.Param), 3395Handle(2, TableIndex.Param), 3396Handle(1, TableIndex.Constant), 3397Handle(4, TableIndex.CustomAttribute)); 3418Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), // C.F2 3419Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3420Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3421Row(2, TableIndex.Constant, EditAndContinueOperation.Default), 3422Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3425Handle(3, TableIndex.MethodDef), 3426Handle(1, TableIndex.Param), 3427Handle(2, TableIndex.Param), 3428Handle(2, TableIndex.Constant), 3429Handle(4, TableIndex.CustomAttribute)); 3567Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3568Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 3569Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 3570Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 3571Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 3572Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3573Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 3574Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 3575Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 3576Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 3577Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 3578Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3579Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3580Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3581Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3582Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3583Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 3584Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3585Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 3586Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3587Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3588Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3589Row(2, TableIndex.Param, EditAndContinueOperation.Default), 3590Row(7, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3591Row(3, TableIndex.Param, EditAndContinueOperation.Default), 3592Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3593Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3594Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3595Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3596Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3597Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3598Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3625Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3626Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 3627Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 3628Row(9, TableIndex.MemberRef, EditAndContinueOperation.Default), 3629Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 3630Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 3631Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 3632Row(14, TableIndex.TypeRef, EditAndContinueOperation.Default), 3633Row(15, TableIndex.TypeRef, EditAndContinueOperation.Default), 3634Row(16, TableIndex.TypeRef, EditAndContinueOperation.Default), 3635Row(17, TableIndex.TypeRef, EditAndContinueOperation.Default), 3636Row(18, TableIndex.TypeRef, EditAndContinueOperation.Default), 3637Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), // NullableAttribute 3638Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), // NullableContextAttribute 3639Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3640Row(1, TableIndex.Field, EditAndContinueOperation.Default), 3641Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3642Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3643Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 3644Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3645Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 3646Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3647Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 3648Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3649Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 3650Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3651Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 3652Row(3, TableIndex.Param, EditAndContinueOperation.Default), 3653Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3654Row(4, TableIndex.Param, EditAndContinueOperation.Default), 3655Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3656Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3657Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3658Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3659Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3660Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3661Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3662Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3665Handle(11, TableIndex.TypeRef), 3666Handle(12, TableIndex.TypeRef), 3667Handle(13, TableIndex.TypeRef), 3668Handle(14, TableIndex.TypeRef), 3669Handle(15, TableIndex.TypeRef), 3670Handle(16, TableIndex.TypeRef), 3671Handle(17, TableIndex.TypeRef), 3672Handle(18, TableIndex.TypeRef), 3673Handle(6, TableIndex.TypeDef), 3674Handle(7, TableIndex.TypeDef), 3675Handle(1, TableIndex.Field), 3676Handle(2, TableIndex.Field), 3677Handle(7, TableIndex.MethodDef), 3678Handle(8, TableIndex.MethodDef), 3679Handle(9, TableIndex.MethodDef), 3680Handle(10, TableIndex.MethodDef), 3681Handle(11, TableIndex.MethodDef), 3682Handle(3, TableIndex.Param), 3683Handle(4, TableIndex.Param), 3684Handle(7, TableIndex.MemberRef), 3685Handle(8, TableIndex.MemberRef), 3686Handle(9, TableIndex.MemberRef), 3687Handle(10, TableIndex.CustomAttribute), 3688Handle(11, TableIndex.CustomAttribute), 3689Handle(12, TableIndex.CustomAttribute), 3690Handle(13, TableIndex.CustomAttribute), 3691Handle(14, TableIndex.CustomAttribute), 3692Handle(15, TableIndex.CustomAttribute), 3693Handle(16, TableIndex.CustomAttribute), 3694Handle(17, TableIndex.CustomAttribute), 3695Handle(3, TableIndex.AssemblyRef)); 3719Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3720Row(19, TableIndex.TypeRef, EditAndContinueOperation.Default), 3721Row(20, TableIndex.TypeRef, EditAndContinueOperation.Default), 3722Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3723Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 3724Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3725Row(5, TableIndex.Param, EditAndContinueOperation.Default), 3726Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3727Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 3778Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3779Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 3780Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 3781Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3782Row(2, TableIndex.Field, EditAndContinueOperation.Default), 3783Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 3786Handle(6, TableIndex.TypeRef), 3787Handle(2, TableIndex.Field), 3788Handle(1, TableIndex.MethodDef), 3789Handle(5, TableIndex.MemberRef), 3790Handle(2, TableIndex.AssemblyRef)); 3832Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 3833Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 3834Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 3835Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3836Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 3839Handle(7, TableIndex.TypeRef), 3840Handle(8, TableIndex.TypeRef), 3841Handle(1, TableIndex.MethodDef), 3842Handle(2, TableIndex.StandAloneSig), 3843Handle(2, TableIndex.AssemblyRef)); 3906Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3907Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 3908Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3909Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3910Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 3911Row(1, TableIndex.Property, EditAndContinueOperation.Default), 3912Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 3915Handle(2, TableIndex.MethodDef), 3916Handle(1, TableIndex.StandAloneSig), 3917Handle(1, TableIndex.PropertyMap), 3918Handle(1, TableIndex.Property), 3919Handle(1, TableIndex.MethodSemantics)); 3945Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3946Row(1, TableIndex.Field, EditAndContinueOperation.Default), 3947Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3948Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 3949Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 3950Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3951Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 3952Row(2, TableIndex.Property, EditAndContinueOperation.Default), 3953Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 3954Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3955Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3956Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3957Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3958Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3959Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 3960Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 3963Handle(1, TableIndex.Field), 3964Handle(3, TableIndex.MethodDef), 3965Handle(4, TableIndex.MethodDef), 3966Handle(1, TableIndex.Param), 3967Handle(4, TableIndex.CustomAttribute), 3968Handle(5, TableIndex.CustomAttribute), 3969Handle(6, TableIndex.CustomAttribute), 3970Handle(7, TableIndex.CustomAttribute), 3971Handle(2, TableIndex.Property), 3972Handle(2, TableIndex.MethodSemantics), 3973Handle(3, TableIndex.MethodSemantics)); 4013Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4014Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4015Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4016Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4017Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4018Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4019Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4020Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4025Handle(3, TableIndex.TypeDef), 4026Handle(2, TableIndex.Field), 4027Handle(1, TableIndex.MethodDef), 4028Handle(2, TableIndex.MethodDef), 4029Handle(4, TableIndex.MethodDef), 4030Handle(8, TableIndex.CustomAttribute) 4072Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4073Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4074Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4075Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4076Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4077Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4078Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4079Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4083Handle(1, TableIndex.MethodDef), 4084Handle(2, TableIndex.MethodDef), 4085Handle(1, TableIndex.Param), 4086Handle(1, TableIndex.CustomAttribute), 4087Handle(7, TableIndex.CustomAttribute), 4088Handle(1, TableIndex.Property), 4089Handle(3, TableIndex.MethodSemantics), 4090Handle(4, TableIndex.MethodSemantics), 4155Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4156Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4157Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4158Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4159Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4160Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4161Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4162Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4167Handle(3, TableIndex.TypeDef), 4168Handle(1, TableIndex.Field), 4169Handle(1, TableIndex.MethodDef), 4170Handle(2, TableIndex.MethodDef), 4171Handle(4, TableIndex.MethodDef), 4172Handle(4, TableIndex.CustomAttribute) 4215Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4216Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4217Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4218Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4219Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4220Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4221Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4222Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4223Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4224Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4225Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4226Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4230Handle(2, TableIndex.Field), 4231Handle(1, TableIndex.MethodDef), 4232Handle(2, TableIndex.MethodDef), 4233Handle(1, TableIndex.Param), 4234Handle(5, TableIndex.CustomAttribute), 4235Handle(6, TableIndex.CustomAttribute), 4236Handle(7, TableIndex.CustomAttribute), 4237Handle(8, TableIndex.CustomAttribute), 4238Handle(1, TableIndex.Property), 4239Handle(3, TableIndex.MethodSemantics), 4240Handle(4, TableIndex.MethodSemantics) 4304Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4305Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4306Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4307Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4308Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4309Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4310Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4311Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4315Handle(3, TableIndex.TypeDef), 4316Handle(1, TableIndex.Field), 4317Handle(1, TableIndex.MethodDef), 4318Handle(2, TableIndex.MethodDef), 4319Handle(4, TableIndex.MethodDef), 4320Handle(4, TableIndex.CustomAttribute) 4366Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4367Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4368Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4369Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4370Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4371Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4372Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4376Handle(1, TableIndex.MethodDef), 4377Handle(2, TableIndex.MethodDef), 4378Handle(1, TableIndex.Param), 4379Handle(2, TableIndex.StandAloneSig), 4380Handle(1, TableIndex.Property), 4381Handle(3, TableIndex.MethodSemantics), 4382Handle(4, TableIndex.MethodSemantics), 4442Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4443Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4444Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4445Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4446Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4447Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4448Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4452Handle(3, TableIndex.TypeDef), 4453Handle(1, TableIndex.Field), 4454Handle(2, TableIndex.MethodDef), 4455Handle(4, TableIndex.MethodDef), 4456Handle(4, TableIndex.CustomAttribute) 4501Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4502Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4503Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4504Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4505Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4506Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4507Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4511Handle(1, TableIndex.MethodDef), 4512Handle(2, TableIndex.MethodDef), 4513Handle(1, TableIndex.Param), 4514Handle(2, TableIndex.StandAloneSig), 4515Handle(1, TableIndex.Property), 4516Handle(3, TableIndex.MethodSemantics), 4517Handle(4, TableIndex.MethodSemantics), 4583Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4584Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4585Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4586Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4587Row(3, TableIndex.Field, EditAndContinueOperation.Default), 4588Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4589Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4590Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4591Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4592Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4593Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4594Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4595Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 4596Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 4597Row(2, TableIndex.Property, EditAndContinueOperation.Default), 4598Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 4599Row(2, TableIndex.Param, EditAndContinueOperation.Default), 4600Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4601Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4602Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4603Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4604Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4605Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4606Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4610Handle(3, TableIndex.TypeDef), 4611Handle(2, TableIndex.Field), 4612Handle(3, TableIndex.Field), 4613Handle(1, TableIndex.MethodDef), 4614Handle(2, TableIndex.MethodDef), 4615Handle(4, TableIndex.MethodDef), 4616Handle(5, TableIndex.MethodDef), 4617Handle(6, TableIndex.MethodDef), 4618Handle(2, TableIndex.Param), 4619Handle(8, TableIndex.CustomAttribute), 4620Handle(9, TableIndex.CustomAttribute), 4621Handle(10, TableIndex.CustomAttribute), 4622Handle(11, TableIndex.CustomAttribute), 4623Handle(12, TableIndex.CustomAttribute), 4624Handle(2, TableIndex.Property), 4625Handle(3, TableIndex.MethodSemantics), 4626Handle(4, TableIndex.MethodSemantics) 4694Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4695Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4696Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4697Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4698Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4699Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4700Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4701Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4702Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4703Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4707Handle(1, TableIndex.MethodDef), 4708Handle(2, TableIndex.MethodDef), 4709Handle(4, TableIndex.MethodDef), 4710Handle(5, TableIndex.MethodDef), 4711Handle(1, TableIndex.Param), 4712Handle(1, TableIndex.CustomAttribute), 4713Handle(7, TableIndex.CustomAttribute), 4714Handle(1, TableIndex.Property), 4715Handle(5, TableIndex.MethodSemantics), 4716Handle(6, TableIndex.MethodSemantics), 4788Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4789Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4790Row(2, TableIndex.Field, EditAndContinueOperation.Default), 4791Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4792Row(3, TableIndex.Field, EditAndContinueOperation.Default), 4793Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4794Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4795Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4796Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4797Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4798Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4799Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4800Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 4801Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 4802Row(2, TableIndex.Property, EditAndContinueOperation.Default), 4803Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 4804Row(2, TableIndex.Param, EditAndContinueOperation.Default), 4805Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4806Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4807Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4808Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4809Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4810Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4811Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 4815Handle(3, TableIndex.TypeDef), 4816Handle(2, TableIndex.Field), 4817Handle(3, TableIndex.Field), 4818Handle(1, TableIndex.MethodDef), 4819Handle(2, TableIndex.MethodDef), 4820Handle(4, TableIndex.MethodDef), 4821Handle(5, TableIndex.MethodDef), 4822Handle(6, TableIndex.MethodDef), 4823Handle(2, TableIndex.Param), 4824Handle(8, TableIndex.CustomAttribute), 4825Handle(9, TableIndex.CustomAttribute), 4826Handle(10, TableIndex.CustomAttribute), 4827Handle(11, TableIndex.CustomAttribute), 4828Handle(12, TableIndex.CustomAttribute), 4829Handle(2, TableIndex.Property), 4830Handle(3, TableIndex.MethodSemantics), 4831Handle(4, TableIndex.MethodSemantics) 4896Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4897Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4898Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4899Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4900Row(1, TableIndex.Property, EditAndContinueOperation.Default), 4901Row(1, TableIndex.Param, EditAndContinueOperation.Default), 4902Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4903Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4904Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4905Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 4909Handle(1, TableIndex.MethodDef), 4910Handle(2, TableIndex.MethodDef), 4911Handle(4, TableIndex.MethodDef), 4912Handle(5, TableIndex.MethodDef), 4913Handle(1, TableIndex.Param), 4914Handle(1, TableIndex.CustomAttribute), 4915Handle(7, TableIndex.CustomAttribute), 4916Handle(1, TableIndex.Property), 4917Handle(5, TableIndex.MethodSemantics), 4918Handle(6, TableIndex.MethodSemantics) 4988Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 4989Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4990Row(1, TableIndex.Field, EditAndContinueOperation.Default), 4991Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 4992Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4993Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 4994Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4995Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 4999Handle(3, TableIndex.TypeDef), 5000Handle(1, TableIndex.Field), 5001Handle(1, TableIndex.MethodDef), 5002Handle(2, TableIndex.MethodDef), 5003Handle(4, TableIndex.MethodDef), 5004Handle(5, TableIndex.CustomAttribute) 5071Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5072Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 5073Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5074Row(1, TableIndex.Field, EditAndContinueOperation.Default), 5075Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5076Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5077Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5078Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5079Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5080Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 5081Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5082Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5083Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5084Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5085Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5089Handle(3, TableIndex.TypeDef), 5090Handle(1, TableIndex.Field), 5091Handle(1, TableIndex.MethodDef), 5092Handle(3, TableIndex.MethodDef), 5093Handle(4, TableIndex.MethodDef), 5094Handle(2, TableIndex.Param), 5095Handle(5, TableIndex.CustomAttribute), 5096Handle(2, TableIndex.StandAloneSig), 5097Handle(2, TableIndex.Property), 5098Handle(2, TableIndex.MethodSemantics) 5156Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5157Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5158Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5159Row(1, TableIndex.Property, EditAndContinueOperation.Default), 5160Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5161Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5165Handle(1, TableIndex.MethodDef), 5166Handle(3, TableIndex.MethodDef), 5167Handle(1, TableIndex.Param), 5168Handle(3, TableIndex.StandAloneSig), 5169Handle(1, TableIndex.Property), 5170Handle(3, TableIndex.MethodSemantics), 5217Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5218Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5219Row(2, TableIndex.Property, EditAndContinueOperation.Default), 5220Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5221Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5225Handle(3, TableIndex.MethodDef), 5226Handle(2, TableIndex.Param), 5227Handle(4, TableIndex.StandAloneSig), 5228Handle(2, TableIndex.Property), 5229Handle(4, TableIndex.MethodSemantics) 5284Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5285Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5286Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5287Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5288Row(3, TableIndex.Param, EditAndContinueOperation.Default), 5293Handle(1, TableIndex.MethodDef), 5294Handle(2, TableIndex.MethodDef), 5295Handle(1, TableIndex.Param), 5296Handle(2, TableIndex.Param), 5297Handle(3, TableIndex.Param), 5366Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5367Row(1, TableIndex.EventMap, EditAndContinueOperation.Default), 5368Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 5369Row(1, TableIndex.Event, EditAndContinueOperation.Default), 5370Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5371Row(1, TableIndex.Field, EditAndContinueOperation.Default), 5372Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5373Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5374Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5375Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 5376Row(2, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5377Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5378Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5379Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5380Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5381Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5382Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5383Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5384Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5385Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 5388Handle(1, TableIndex.Field), 5389Handle(2, TableIndex.MethodDef), 5390Handle(3, TableIndex.MethodDef), 5391Handle(1, TableIndex.Param), 5392Handle(2, TableIndex.Param), 5393Handle(4, TableIndex.CustomAttribute), 5394Handle(5, TableIndex.CustomAttribute), 5395Handle(6, TableIndex.CustomAttribute), 5396Handle(7, TableIndex.CustomAttribute), 5397Handle(1, TableIndex.StandAloneSig), 5398Handle(1, TableIndex.EventMap), 5399Handle(1, TableIndex.Event), 5400Handle(1, TableIndex.MethodSemantics), 5401Handle(2, TableIndex.MethodSemantics)); 5421Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5422Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 5423Row(2, TableIndex.Event, EditAndContinueOperation.Default), 5424Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5425Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5426Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5427Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5428Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5429Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5430Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5431Row(3, TableIndex.Param, EditAndContinueOperation.Default), 5432Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5433Row(4, TableIndex.Param, EditAndContinueOperation.Default), 5434Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5435Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5436Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5437Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5438Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5439Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 5442Handle(2, TableIndex.Field), 5443Handle(4, TableIndex.MethodDef), 5444Handle(5, TableIndex.MethodDef), 5445Handle(3, TableIndex.Param), 5446Handle(4, TableIndex.Param), 5447Handle(8, TableIndex.CustomAttribute), 5448Handle(9, TableIndex.CustomAttribute), 5449Handle(10, TableIndex.CustomAttribute), 5450Handle(11, TableIndex.CustomAttribute), 5451Handle(2, TableIndex.StandAloneSig), 5452Handle(2, TableIndex.Event), 5453Handle(3, TableIndex.MethodSemantics), 5454Handle(4, TableIndex.MethodSemantics)); 5495Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 5496Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5497Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5498Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5499Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5500Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5501Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5502Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 5506Handle(3, TableIndex.TypeDef), 5507Handle(2, TableIndex.Field), 5508Handle(1, TableIndex.MethodDef), 5509Handle(2, TableIndex.MethodDef), 5510Handle(4, TableIndex.MethodDef), 5511Handle(8, TableIndex.CustomAttribute) 5579Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5580Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 5581Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 5582Row(2, TableIndex.Event, EditAndContinueOperation.Default), 5583Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5584Row(2, TableIndex.Field, EditAndContinueOperation.Default), 5585Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5586Row(3, TableIndex.Field, EditAndContinueOperation.Default), 5587Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5588Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5589Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5590Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5591Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5592Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5593Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5594Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 5595Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5596Row(3, TableIndex.Param, EditAndContinueOperation.Default), 5597Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 5598Row(4, TableIndex.Param, EditAndContinueOperation.Default), 5599Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5600Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5601Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5602Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5603Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5604Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5605Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 5609Handle(3, TableIndex.TypeDef), 5610Handle(2, TableIndex.Field), 5611Handle(3, TableIndex.Field), 5612Handle(1, TableIndex.MethodDef), 5613Handle(2, TableIndex.MethodDef), 5614Handle(4, TableIndex.MethodDef), 5615Handle(5, TableIndex.MethodDef), 5616Handle(6, TableIndex.MethodDef), 5617Handle(3, TableIndex.Param), 5618Handle(4, TableIndex.Param), 5619Handle(8, TableIndex.CustomAttribute), 5620Handle(9, TableIndex.CustomAttribute), 5621Handle(10, TableIndex.CustomAttribute), 5622Handle(11, TableIndex.CustomAttribute), 5623Handle(12, TableIndex.CustomAttribute), 5624Handle(2, TableIndex.StandAloneSig), 5625Handle(2, TableIndex.Event), 5626Handle(3, TableIndex.MethodSemantics), 5627Handle(4, TableIndex.MethodSemantics) 5724Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5725Row(1, TableIndex.Event, EditAndContinueOperation.Default), 5726Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 5727Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5728Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 5729Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5730Row(1, TableIndex.Param, EditAndContinueOperation.Default), 5731Row(2, TableIndex.Param, EditAndContinueOperation.Default), 5732Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5733Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5734Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5735Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 5739Handle(1, TableIndex.MethodDef), 5740Handle(2, TableIndex.MethodDef), 5741Handle(4, TableIndex.MethodDef), 5742Handle(5, TableIndex.MethodDef), 5743Handle(1, TableIndex.Param), 5744Handle(2, TableIndex.Param), 5745Handle(1, TableIndex.CustomAttribute), 5746Handle(7, TableIndex.CustomAttribute), 5747Handle(3, TableIndex.StandAloneSig), 5748Handle(1, TableIndex.Event), 5749Handle(5, TableIndex.MethodSemantics), 5750Handle(6, TableIndex.MethodSemantics), 5936Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 5937Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 5940Handle(2, TableIndex.TypeDef), 5941Handle(4, TableIndex.CustomAttribute)); 5957Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 5958Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 5959Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 5962Handle(2, TableIndex.TypeDef), 5963Handle(4, TableIndex.CustomAttribute), 5964Handle(5, TableIndex.CustomAttribute)); 6075Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.Default), // adding a type def 6076Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6077Row(baseFieldCount + generation, TableIndex.Field, EditAndContinueOperation.Default), 6078Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6079Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6080Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6081Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6082Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6083Row(baseParameterCount + generation * 2 - 1, TableIndex.Param, EditAndContinueOperation.Default), 6084Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 6085Row(baseParameterCount + generation * 2, TableIndex.Param, EditAndContinueOperation.Default), 6086hasAttribute ? Row(baseAttributeCount + generation, TableIndex.CustomAttribute, EditAndContinueOperation.Default) : default); // adding a new attribute row for attribute on C#* definition 6089Handle(baseTypeCount + generation, TableIndex.TypeDef), 6090Handle(baseFieldCount + generation, TableIndex.Field), 6091Handle(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef), 6092Handle(baseMethodCount + generation * 2, TableIndex.MethodDef), 6093Handle(baseParameterCount + generation * 2 - 1, TableIndex.Param), 6094Handle(baseParameterCount + generation * 2, TableIndex.Param), 6095hasAttribute ? Handle(baseAttributeCount + generation, TableIndex.CustomAttribute) : default); 6155Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 6156Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 6157Row(5, TableIndex.Param, EditAndContinueOperation.Default), 6158Row(6, TableIndex.Param, EditAndContinueOperation.Default), 6159Row(hasAttribute ? 9 : 8, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 6162Handle(5, TableIndex.TypeDef), 6163Handle(7, TableIndex.MethodDef), 6164Handle(5, TableIndex.Param), 6165Handle(6, TableIndex.Param), 6166Handle(hasAttribute ? 9 : 8, TableIndex.CustomAttribute)); 6234Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 6235Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6236Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6237Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 6238Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6239Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 6240Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6241Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 6242Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 6246Handle(5, TableIndex.TypeDef), 6247Handle(5, TableIndex.MethodDef), 6248Handle(7, TableIndex.MethodDef), 6249Handle(8, TableIndex.MethodDef), 6250Handle(9, TableIndex.MethodDef), 6251Handle(8, TableIndex.CustomAttribute) 6292new CustomAttributeRow(Handle(1, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 6293new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 6294new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 6295new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 6296new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 6297new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 6298new CustomAttributeRow(Handle(2, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 6317new CustomAttributeRow(Handle(1, TableIndex.Event), Handle(10, TableIndex.MemberRef))); 6320Row(1, TableIndex.Event, EditAndContinueOperation.Default), 6321Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6322Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 6323Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default)); 6326Handle(8, TableIndex.CustomAttribute), 6327Handle(1, TableIndex.Event), 6328Handle(3, TableIndex.MethodSemantics), 6329Handle(4, TableIndex.MethodSemantics)); 6537Assert.Equal(1, reader0.GetTableRowCount(TableIndex.NestedClass)); 6557Assert.Equal(2, reader1.GetTableRowCount(TableIndex.NestedClass)); 6560Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 6561Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 6562Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 6563Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6564Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6565Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 6566Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6567Row(1, TableIndex.Field, EditAndContinueOperation.Default), 6568Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6569Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6570Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6571Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6572Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6573Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6574Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 6575Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 6576Row(3, TableIndex.NestedClass, EditAndContinueOperation.Default)); 6579Handle(6, TableIndex.TypeRef), 6580Handle(4, TableIndex.TypeDef), 6581Handle(5, TableIndex.TypeDef), 6582Handle(1, TableIndex.Field), 6583Handle(1, TableIndex.MethodDef), 6584Handle(4, TableIndex.MethodDef), 6585Handle(5, TableIndex.MethodDef), 6586Handle(6, TableIndex.MethodDef), 6587Handle(5, TableIndex.MemberRef), 6588Handle(2, TableIndex.StandAloneSig), 6589Handle(2, TableIndex.AssemblyRef), 6590Handle(2, TableIndex.NestedClass), 6591Handle(3, TableIndex.NestedClass)); 6640Assert.Equal(4, reader0.GetTableRowCount(TableIndex.NestedClass)); 6653Assert.Equal(4, reader1.GetTableRowCount(TableIndex.NestedClass)); 6700Assert.Equal(1, reader0.GetTableRowCount(TableIndex.NestedClass)); 6718Assert.Equal(1, reader1.GetTableRowCount(TableIndex.NestedClass)); 6721Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 6722Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 6723Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 6724Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 6725Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 6726Row(1, TableIndex.MethodSpec, EditAndContinueOperation.Default), 6727Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 6728Row(1, TableIndex.TypeSpec, EditAndContinueOperation.Default), 6729Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 6730Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 6731Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6732Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6733Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 6734Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6735Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6736Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6737Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6738Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 6739Row(2, TableIndex.GenericParam, EditAndContinueOperation.Default), 6740Row(3, TableIndex.GenericParam, EditAndContinueOperation.Default), 6741Row(4, TableIndex.GenericParam, EditAndContinueOperation.Default), 6742Row(1, TableIndex.GenericParamConstraint, EditAndContinueOperation.Default)); 6745Handle(6, TableIndex.TypeRef), 6746Handle(4, TableIndex.TypeDef), 6747Handle(1, TableIndex.MethodDef), 6748Handle(4, TableIndex.MethodDef), 6749Handle(5, TableIndex.MethodDef), 6750Handle(5, TableIndex.MemberRef), 6751Handle(6, TableIndex.MemberRef), 6752Handle(7, TableIndex.MemberRef), 6753Handle(8, TableIndex.MemberRef), 6754Handle(2, TableIndex.StandAloneSig), 6755Handle(1, TableIndex.TypeSpec), 6756Handle(2, TableIndex.TypeSpec), 6757Handle(3, TableIndex.TypeSpec), 6758Handle(2, TableIndex.AssemblyRef), 6759Handle(2, TableIndex.NestedClass), 6760Handle(2, TableIndex.GenericParam), 6761Handle(3, TableIndex.GenericParam), 6762Handle(4, TableIndex.GenericParam), 6763Handle(1, TableIndex.MethodSpec), 6764Handle(1, TableIndex.GenericParamConstraint)); 6889Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 6890Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 6891Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 6894Handle(6, TableIndex.TypeRef), 6895Handle(2, TableIndex.MethodDef), 6896Handle(2, TableIndex.AssemblyRef)); 6955Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 6956Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 6957Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6958Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 6959Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default)); 6962Handle(6, TableIndex.TypeRef), 6963Handle(6, TableIndex.MethodDef), 6964Handle(2, TableIndex.MethodImpl), 6965Handle(2, TableIndex.AssemblyRef)); 6980Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 6981Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 6982Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default)); 6985Handle(7, TableIndex.TypeRef), 6986Handle(6, TableIndex.MethodDef), 6987Handle(3, TableIndex.AssemblyRef)); 7031Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7032Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 7033Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7034Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 7037Handle(6, TableIndex.TypeRef), 7038Handle(2, TableIndex.MethodDef), 7039Handle(5, TableIndex.MemberRef), 7040Handle(2, TableIndex.AssemblyRef)); 7154Assert.Equal(1, reader1.GetTableRowCount(TableIndex.NestedClass)); 7181Assert.Equal(0, reader2.GetTableRowCount(TableIndex.NestedClass)); 7184Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7185Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 7186Row(1, TableIndex.Field, EditAndContinueOperation.Default), 7187Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7188Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7189Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7190Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7191Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 7192Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 7193Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7194Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 7195Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 7196Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7197Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 7198Row(3, TableIndex.Param, EditAndContinueOperation.Default), 7199Row(4, TableIndex.Param, EditAndContinueOperation.Default), 7200Row(5, TableIndex.Param, EditAndContinueOperation.Default), 7201Row(6, TableIndex.Param, EditAndContinueOperation.Default), 7202Row(7, TableIndex.Param, EditAndContinueOperation.Default), 7203Row(8, TableIndex.Param, EditAndContinueOperation.Default)); 7280new CustomAttributeRow(Handle(1, TableIndex.Field), Handle(2, TableIndex.MethodDef)), 7281new CustomAttributeRow(Handle(1, TableIndex.Property), Handle(1, TableIndex.MethodDef)), 7282new CustomAttributeRow(Handle(1, TableIndex.Event), Handle(2, TableIndex.MethodDef)), 7283new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(1, TableIndex.MemberRef)), 7284new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(2, TableIndex.MemberRef)), 7285new CustomAttributeRow(Handle(1, TableIndex.Assembly), Handle(3, TableIndex.MemberRef)), 7286new CustomAttributeRow(Handle(1, TableIndex.GenericParam), Handle(2, TableIndex.MethodDef)), 7287new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(4, TableIndex.MemberRef)), 7288new CustomAttributeRow(Handle(2, TableIndex.Field), Handle(5, TableIndex.MemberRef)), 7289new CustomAttributeRow(Handle(3, TableIndex.MethodDef), Handle(1, TableIndex.MethodDef)), 7290new CustomAttributeRow(Handle(5, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef)), 7291new CustomAttributeRow(Handle(6, TableIndex.MethodDef), Handle(4, TableIndex.MemberRef))); 7314Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7315Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7316Row(1, TableIndex.EventMap, EditAndContinueOperation.AddEvent), 7317Row(2, TableIndex.Event, EditAndContinueOperation.Default), 7318Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7319Row(3, TableIndex.Field, EditAndContinueOperation.Default), 7320Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7321Row(4, TableIndex.Field, EditAndContinueOperation.Default), 7322Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7323Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7324Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7325Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 7326Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7327Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 7328Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7329Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 7330Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 7331Row(2, TableIndex.Property, EditAndContinueOperation.Default), 7332Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7333Row(8, TableIndex.Param, EditAndContinueOperation.Default), 7334Row(15, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7335Row(9, TableIndex.Param, EditAndContinueOperation.Default), 7336Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7337Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7338Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7339Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7340Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7341Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7342Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7343Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7344Row(20, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7345Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 7346Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 7347Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 7348Row(2, TableIndex.GenericParam, EditAndContinueOperation.Default)); 7351Handle(3, TableIndex.Field), 7352Handle(4, TableIndex.Field), 7353Handle(12, TableIndex.MethodDef), 7354Handle(13, TableIndex.MethodDef), 7355Handle(14, TableIndex.MethodDef), 7356Handle(15, TableIndex.MethodDef), 7357Handle(8, TableIndex.Param), 7358Handle(9, TableIndex.Param), 7359Handle(7, TableIndex.CustomAttribute), 7360Handle(13, TableIndex.CustomAttribute), 7361Handle(14, TableIndex.CustomAttribute), 7362Handle(15, TableIndex.CustomAttribute), 7363Handle(16, TableIndex.CustomAttribute), 7364Handle(17, TableIndex.CustomAttribute), 7365Handle(18, TableIndex.CustomAttribute), 7366Handle(19, TableIndex.CustomAttribute), 7367Handle(20, TableIndex.CustomAttribute), 7368Handle(3, TableIndex.StandAloneSig), 7369Handle(4, TableIndex.StandAloneSig), 7370Handle(2, TableIndex.Event), 7371Handle(2, TableIndex.Property), 7372Handle(4, TableIndex.MethodSemantics), 7373Handle(5, TableIndex.MethodSemantics), 7374Handle(6, TableIndex.MethodSemantics), 7375Handle(2, TableIndex.GenericParam)); 7378new CustomAttributeRow(Handle(1, TableIndex.GenericParam), Handle(1, TableIndex.MethodDef)), 7379new CustomAttributeRow(Handle(2, TableIndex.Property), Handle(2, TableIndex.MethodDef)), 7380new CustomAttributeRow(Handle(2, TableIndex.Event), Handle(1, TableIndex.MethodDef)), 7381new CustomAttributeRow(Handle(3, TableIndex.Field), Handle(1, TableIndex.MethodDef)), 7382new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(11, TableIndex.MemberRef)), 7383new CustomAttributeRow(Handle(4, TableIndex.Field), Handle(12, TableIndex.MemberRef)), 7384new CustomAttributeRow(Handle(12, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)), 7385new CustomAttributeRow(Handle(14, TableIndex.MethodDef), Handle(11, TableIndex.MemberRef)), 7386new CustomAttributeRow(Handle(15, TableIndex.MethodDef), Handle(11, TableIndex.MemberRef))); 7435Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7436Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 7437Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7438Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); // C.M 7440Handle(7, TableIndex.TypeRef), 7441Handle(2, TableIndex.MethodDef), 7442Handle(2, TableIndex.AssemblyRef)); 7555Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7556Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 7557Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 7558Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7559Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default)); 7562Handle(12, TableIndex.TypeRef), 7563Handle(13, TableIndex.TypeRef), 7564Handle(1, TableIndex.MethodDef), 7565Handle(2, TableIndex.StandAloneSig), 7566Handle(2, TableIndex.AssemblyRef)); 7657Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7658Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7659Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7660Row(1, TableIndex.Param, EditAndContinueOperation.Default), 7661Row(2, TableIndex.ImplMap, EditAndContinueOperation.Default)); 7664Handle(3, TableIndex.MethodDef), 7665Handle(1, TableIndex.Param), 7666Handle(2, TableIndex.ImplMap)); 7709Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 7710Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 7711Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 7712Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 7713Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7714Row(3, TableIndex.Field, EditAndContinueOperation.Default), 7715Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7716Row(4, TableIndex.Field, EditAndContinueOperation.Default), 7717Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7718Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7719Row(2, TableIndex.ClassLayout, EditAndContinueOperation.Default), 7720Row(3, TableIndex.FieldLayout, EditAndContinueOperation.Default), 7721Row(4, TableIndex.FieldLayout, EditAndContinueOperation.Default)); 7723Handle(6, TableIndex.TypeRef), 7724Handle(3, TableIndex.TypeDef), 7725Handle(3, TableIndex.Field), 7726Handle(4, TableIndex.Field), 7727Handle(2, TableIndex.MethodDef), 7728Handle(5, TableIndex.MemberRef), 7729Handle(2, TableIndex.ClassLayout), 7730Handle(3, TableIndex.FieldLayout), 7731Handle(4, TableIndex.FieldLayout), 7732Handle(2, TableIndex.AssemblyRef)); 8341Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 8342Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 8343Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 8344Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 8347Handle(6, TableIndex.TypeRef), 8348Handle(2, TableIndex.MethodDef), 8349Handle(2, TableIndex.AssemblyRef)); 11920Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 11921Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 11922Row(1, TableIndex.Field, EditAndContinueOperation.Default), 11923Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 11924Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 11925Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 11926Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 11931Handle(3, TableIndex.TypeDef), 11932Handle(1, TableIndex.Field), 11933Handle(1, TableIndex.MethodDef), 11934Handle(3, TableIndex.MethodDef), 11935Handle(4, TableIndex.CustomAttribute) 12017Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 12018Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 12019Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 12020Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default)); 12023Handle(7, TableIndex.TypeRef), 12024Handle(2, TableIndex.MethodDef), 12025Handle(2, TableIndex.StandAloneSig), 12026Handle(2, TableIndex.AssemblyRef)); 15496Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 15497Row(21, TableIndex.TypeRef, EditAndContinueOperation.Default), 15498Row(22, TableIndex.TypeRef, EditAndContinueOperation.Default), 15499Row(23, TableIndex.TypeRef, EditAndContinueOperation.Default), 15500Row(4, TableIndex.TypeSpec, EditAndContinueOperation.Default), 15501Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 15502Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 15503Row(3, TableIndex.Param, EditAndContinueOperation.Default), 15504Row(23, TableIndex.CustomAttribute, EditAndContinueOperation.Default)); 15507Handle(21, TableIndex.TypeRef), 15508Handle(22, TableIndex.TypeRef), 15509Handle(23, TableIndex.TypeRef), 15510Handle(10, TableIndex.MethodDef), 15511Handle(3, TableIndex.Param), 15512Handle(23, TableIndex.CustomAttribute), 15513Handle(3, TableIndex.StandAloneSig), 15514Handle(4, TableIndex.TypeSpec), 15515Handle(3, TableIndex.AssemblyRef)); 15614Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 15615Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 15616Row(3, TableIndex.Field, EditAndContinueOperation.Default), 15617Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 15618Row(4, TableIndex.Field, EditAndContinueOperation.Default), 15619Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 15620Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15621Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 15622Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15623Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 15624Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15625Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 15626Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15627Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 15628Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15629Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 15630Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 15631Row(2, TableIndex.Property, EditAndContinueOperation.Default), 15632Row(16, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15633Row(9, TableIndex.Param, EditAndContinueOperation.Default), 15634Row(18, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15635Row(10, TableIndex.Param, EditAndContinueOperation.Default), 15636Row(19, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15637Row(11, TableIndex.Param, EditAndContinueOperation.Default), 15638Row(30, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15639Row(31, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15640Row(32, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15641Row(33, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15642Row(34, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15643Row(35, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15644Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 15645Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 15702Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 15703Row(5, TableIndex.Field, EditAndContinueOperation.Default), 15704Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15705Row(21, TableIndex.MethodDef, EditAndContinueOperation.Default), 15706Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15707Row(22, TableIndex.MethodDef, EditAndContinueOperation.Default), 15708Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15709Row(23, TableIndex.MethodDef, EditAndContinueOperation.Default), 15710Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15711Row(24, TableIndex.MethodDef, EditAndContinueOperation.Default), 15712Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 15713Row(4, TableIndex.Property, EditAndContinueOperation.Default), 15714Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15715Row(15, TableIndex.Param, EditAndContinueOperation.Default), 15716Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15717Row(16, TableIndex.Param, EditAndContinueOperation.Default), 15718Row(21, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15719Row(17, TableIndex.Param, EditAndContinueOperation.Default), 15720Row(23, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15721Row(18, TableIndex.Param, EditAndContinueOperation.Default), 15722Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15723Row(19, TableIndex.Param, EditAndContinueOperation.Default), 15724Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15725Row(20, TableIndex.Param, EditAndContinueOperation.Default), 15726Row(24, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15727Row(21, TableIndex.Param, EditAndContinueOperation.Default), 15728Row(39, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15729Row(40, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15730Row(41, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15731Row(42, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15732Row(43, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15733Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 15734Row(7, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 15837Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 15838Row(4, TableIndex.Field, EditAndContinueOperation.Default), 15839Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15840Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 15841Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 15842Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 15843Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 15844Row(3, TableIndex.Property, EditAndContinueOperation.Default), 15845Row(20, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 15846Row(12, TableIndex.Param, EditAndContinueOperation.Default), 15847Row(35, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15848Row(36, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15849Row(37, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15850Row(38, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 15851Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 15852Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 15924Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 15925Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 15926Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 15927Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 15928Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 15929Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 15930Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), // Synthesized Main method 15931Row(1, TableIndex.Param, EditAndContinueOperation.Default)); 15934Handle(8, TableIndex.TypeRef), 15935Handle(9, TableIndex.TypeRef), 15936Handle(10, TableIndex.TypeRef), 15937Handle(1, TableIndex.MethodDef), 15938Handle(1, TableIndex.Param), 15939Handle(7, TableIndex.MemberRef), 15940Handle(8, TableIndex.MemberRef), 15941Handle(2, TableIndex.AssemblyRef)); 16395Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 16396Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16397Row(1, TableIndex.Field, EditAndContinueOperation.Default), 16398Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 16399Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16400Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 16401Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 16406Handle(4, TableIndex.TypeDef), 16407Handle(1, TableIndex.Field), 16408Handle(1, TableIndex.MethodDef), 16409Handle(4, TableIndex.MethodDef), 16410Handle(4, TableIndex.CustomAttribute) 16477Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16478Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default) 16482Handle(3, TableIndex.MethodDef), 16514Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 16515Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16516Row(1, TableIndex.Field, EditAndContinueOperation.Default), 16517Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 16518Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16519Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 16520Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 16525Handle(3, TableIndex.TypeDef), 16526Handle(1, TableIndex.Field), 16527Handle(3, TableIndex.MethodDef), 16528Handle(4, TableIndex.MethodDef), 16529Handle(4, TableIndex.CustomAttribute) 16594Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 16595Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16596Row(1, TableIndex.Field, EditAndContinueOperation.Default), 16597Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 16598Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16599Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 16600Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 16604Handle(3, TableIndex.TypeDef), 16605Handle(1, TableIndex.Field), 16606Handle(1, TableIndex.MethodDef), 16607Handle(3, TableIndex.MethodDef), 16608Handle(4, TableIndex.CustomAttribute) 16654Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 16658Handle(1, TableIndex.MethodDef), 16717Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 16718Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16719Row(1, TableIndex.Field, EditAndContinueOperation.Default), 16720Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 16721Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16722Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 16723Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 16728Handle(5, TableIndex.TypeDef), 16729Handle(1, TableIndex.Field), 16730Handle(3, TableIndex.MethodDef), 16731Handle(5, TableIndex.MethodDef), 16732Handle(7, TableIndex.CustomAttribute) 16737new CustomAttributeRow(Handle(5, TableIndex.TypeDef), Handle(6, TableIndex.MemberRef)) 16789Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 16790Row(1, TableIndex.Param, EditAndContinueOperation.Default), 16791Row(2, TableIndex.Param, EditAndContinueOperation.Default), 16792Row(1, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16793Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 16794Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 16798Handle(3, TableIndex.MethodDef), 16799Handle(1, TableIndex.Param), 16800Handle(2, TableIndex.Param), 16801Handle(1, TableIndex.CustomAttribute), 16802Handle(5, TableIndex.CustomAttribute), 16803Handle(6, TableIndex.CustomAttribute) 16807new CustomAttributeRow(Handle(1, TableIndex.Param), Handle(2, TableIndex.MethodDef)), 16808new CustomAttributeRow(Handle(2, TableIndex.Param), Handle(2, TableIndex.MethodDef)), 16809new CustomAttributeRow(Handle(3, TableIndex.MethodDef), Handle(2, TableIndex.MethodDef)) 16863Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 16864Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16865Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 16866Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 16867Row(1, TableIndex.Param, EditAndContinueOperation.Default) 16871Handle(3, TableIndex.MethodDef), 16872Handle(1, TableIndex.Param), 16873Handle(1, TableIndex.StandAloneSig) 16911Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 16912Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 16913Row(1, TableIndex.Field, EditAndContinueOperation.Default), 16914Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 16915Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 16916Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 16917Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 16922Handle(3, TableIndex.TypeDef), 16923Handle(1, TableIndex.Field), 16924Handle(3, TableIndex.MethodDef), 16925Handle(4, TableIndex.MethodDef), 16926Handle(4, TableIndex.CustomAttribute) 16975Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 16976Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 16977Row(1, TableIndex.Param, EditAndContinueOperation.Default) 16981Handle(3, TableIndex.MethodDef), 16982Handle(1, TableIndex.Param), 16983Handle(2, TableIndex.StandAloneSig) 17051Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 17052Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17053Row(3, TableIndex.Field, EditAndContinueOperation.Default), 17054Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17055Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 17056Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17057Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 17058Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17063Handle(4, TableIndex.TypeDef), 17064Handle(3, TableIndex.Field), 17065Handle(1, TableIndex.MethodDef), 17066Handle(5, TableIndex.MethodDef), 17067Handle(6, TableIndex.MethodDef), 17068Handle(5, TableIndex.CustomAttribute) 17129Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17130Row(4, TableIndex.Field, EditAndContinueOperation.Default), 17131Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17132Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 17133Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17134Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 17139Handle(4, TableIndex.Field), 17140Handle(1, TableIndex.MethodDef), 17141Handle(4, TableIndex.MethodDef), 17142Handle(7, TableIndex.MethodDef) 17204Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 17205Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 17210Handle(1, TableIndex.MethodDef), 17211Handle(7, TableIndex.MethodDef) 17303Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 17304Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17305Row(3, TableIndex.Field, EditAndContinueOperation.Default), 17306Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 17307Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 17308Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17309Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 17310Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17315Handle(4, TableIndex.TypeDef), 17316Handle(3, TableIndex.Field), 17317Handle(2, TableIndex.MethodDef), 17318Handle(5, TableIndex.MethodDef), 17319Handle(6, TableIndex.MethodDef), 17320Handle(5, TableIndex.CustomAttribute) 17477Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 17478Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17479Row(5, TableIndex.Field, EditAndContinueOperation.Default), 17480Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 17481Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 17482Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 17483Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 17484Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17485Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 17486Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17491Handle(8, TableIndex.TypeDef), 17492Handle(5, TableIndex.Field), 17493Handle(5, TableIndex.MethodDef), 17494Handle(9, TableIndex.MethodDef), 17495Handle(10, TableIndex.MethodDef), 17496Handle(11, TableIndex.MethodDef), 17497Handle(12, TableIndex.MethodDef), 17498Handle(15, TableIndex.CustomAttribute) 17633Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 17634Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default) 17639Handle(13, TableIndex.MethodDef), 17640Handle(16, TableIndex.MethodDef) 17754Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 17755Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 17756Row(1, TableIndex.Field, EditAndContinueOperation.Default), 17757Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 17758Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 17759Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 17760Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 17761Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 17762Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 17767Handle(7, TableIndex.TypeDef), 17768Handle(1, TableIndex.Field), 17769Handle(5, TableIndex.MethodDef), 17770Handle(7, TableIndex.MethodDef), 17771Handle(8, TableIndex.MethodDef), 17772Handle(9, TableIndex.MethodDef), 17773Handle(18, TableIndex.CustomAttribute) 17928Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 17929Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 17930Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 17931Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default) 18058Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 18059Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18060Row(1, TableIndex.Field, EditAndContinueOperation.Default), 18061Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18062Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18063Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18064Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18065Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18066Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 18067Row(2, TableIndex.Param, EditAndContinueOperation.Default), 18068Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18072Handle(3, TableIndex.TypeDef), 18073Handle(1, TableIndex.Field), 18074Handle(1, TableIndex.MethodDef), 18075Handle(3, TableIndex.MethodDef), 18076Handle(4, TableIndex.MethodDef), 18077Handle(2, TableIndex.Param), 18078Handle(4, TableIndex.CustomAttribute) 18133Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18134Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18135Row(1, TableIndex.Param, EditAndContinueOperation.Default) 18140Handle(1, TableIndex.MethodDef), 18141Handle(3, TableIndex.MethodDef), 18142Handle(1, TableIndex.Param) 18204Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18205Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 18206Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18207Row(1, TableIndex.Field, EditAndContinueOperation.Default), 18208Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18209Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18210Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18211Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18212Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18213Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 18214Row(2, TableIndex.Param, EditAndContinueOperation.Default), 18215Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18220Handle(3, TableIndex.TypeDef), 18221Handle(1, TableIndex.Field), 18222Handle(1, TableIndex.MethodDef), 18223Handle(3, TableIndex.MethodDef), 18224Handle(4, TableIndex.MethodDef), 18225Handle(2, TableIndex.Param), 18226Handle(4, TableIndex.CustomAttribute), 18227Handle(2, TableIndex.StandAloneSig) 18283Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 18284Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18285Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18286Row(1, TableIndex.Param, EditAndContinueOperation.Default), 18290Handle(1, TableIndex.MethodDef), 18291Handle(3, TableIndex.MethodDef), 18292Handle(1, TableIndex.Param), 18293Handle(3, TableIndex.StandAloneSig) 18357Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 18358Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 18359Row(1, TableIndex.Field, EditAndContinueOperation.Default), 18360Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18361Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18362Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18363Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 18364Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 18365Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 18366Row(2, TableIndex.Param, EditAndContinueOperation.Default), 18367Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 18368Row(3, TableIndex.Param, EditAndContinueOperation.Default), 18369Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 18374Handle(3, TableIndex.TypeDef), 18375Handle(1, TableIndex.Field), 18376Handle(1, TableIndex.MethodDef), 18377Handle(3, TableIndex.MethodDef), 18378Handle(4, TableIndex.MethodDef), 18379Handle(2, TableIndex.Param), 18380Handle(3, TableIndex.Param), 18381Handle(4, TableIndex.CustomAttribute) 18436Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 18437Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 18438Row(1, TableIndex.Param, EditAndContinueOperation.Default), 18442Handle(1, TableIndex.MethodDef), 18443Handle(3, TableIndex.MethodDef), 18444Handle(1, TableIndex.Param), 18913Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 18918Handle(1, TableIndex.MethodDef) 19017Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19018Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 19023Handle(1, TableIndex.MethodDef), 19024Handle(2, TableIndex.StandAloneSig) 19126Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 19131Handle(1, TableIndex.MethodDef) 19257Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19258Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19259Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 19260Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19261Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19262Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 19263Row(1, TableIndex.Param, EditAndContinueOperation.Default), 19264Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19265Row(3, TableIndex.Param, EditAndContinueOperation.Default), 19266Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 19271Handle(4, TableIndex.TypeDef), 19272Handle(1, TableIndex.MethodDef), 19273Handle(4, TableIndex.MethodDef), 19274Handle(1, TableIndex.Param), 19275Handle(3, TableIndex.Param), 19276Handle(5, TableIndex.CustomAttribute), 19277Handle(3, TableIndex.StandAloneSig), 19278Handle(4, TableIndex.StandAloneSig) 19319Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19320Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 19321Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19322Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19323Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 19324Row(1, TableIndex.Param, EditAndContinueOperation.Default), 19325Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19326Row(3, TableIndex.Param, EditAndContinueOperation.Default), 19327Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 19332Handle(4, TableIndex.TypeDef), 19333Handle(1, TableIndex.MethodDef), 19334Handle(4, TableIndex.MethodDef), 19335Handle(1, TableIndex.Param), 19336Handle(3, TableIndex.Param), 19337Handle(5, TableIndex.CustomAttribute), 19338Handle(2, TableIndex.StandAloneSig) 19405Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19406Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 19407Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 19408Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19409Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 19410Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19411Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 19412Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19413Row(2, TableIndex.Param, EditAndContinueOperation.Default), 19414Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19415Row(3, TableIndex.Param, EditAndContinueOperation.Default), 19416Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19417Row(4, TableIndex.Param, EditAndContinueOperation.Default), 19418Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19419Row(3, TableIndex.GenericParam, EditAndContinueOperation.Default), 19420Row(4, TableIndex.GenericParam, EditAndContinueOperation.Default), 19421Row(5, TableIndex.GenericParam, EditAndContinueOperation.Default), 19422Row(6, TableIndex.GenericParam, EditAndContinueOperation.Default) 19427Handle(5, TableIndex.TypeDef), 19428Handle(1, TableIndex.MethodDef), 19429Handle(4, TableIndex.MethodDef), 19430Handle(5, TableIndex.MethodDef), 19431Handle(2, TableIndex.Param), 19432Handle(3, TableIndex.Param), 19433Handle(4, TableIndex.Param), 19434Handle(6, TableIndex.CustomAttribute), 19435Handle(2, TableIndex.StandAloneSig), 19436Handle(3, TableIndex.GenericParam), 19437Handle(4, TableIndex.GenericParam), 19438Handle(5, TableIndex.GenericParam), 19439Handle(6, TableIndex.GenericParam) 19531Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19532Row(8, TableIndex.TypeDef, EditAndContinueOperation.Default), 19533Row(9, TableIndex.TypeDef, EditAndContinueOperation.Default), 19534Row(9, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19535Row(3, TableIndex.Field, EditAndContinueOperation.Default), 19536Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 19537Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19538Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 19539Row(8, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19540Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 19541Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19542Row(9, TableIndex.Param, EditAndContinueOperation.Default), 19543Row(11, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19544Row(10, TableIndex.Param, EditAndContinueOperation.Default), 19545Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19546Row(11, TableIndex.Param, EditAndContinueOperation.Default), 19547Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19548Row(12, TableIndex.Param, EditAndContinueOperation.Default), 19549Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19550Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19551Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19552Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19553Row(8, TableIndex.GenericParam, EditAndContinueOperation.Default), 19554Row(9, TableIndex.GenericParam, EditAndContinueOperation.Default), 19555Row(10, TableIndex.GenericParam, EditAndContinueOperation.Default), 19556Row(11, TableIndex.GenericParam, EditAndContinueOperation.Default), 19557Row(12, TableIndex.GenericParam, EditAndContinueOperation.Default) 19562Handle(8, TableIndex.TypeDef), 19563Handle(9, TableIndex.TypeDef), 19564Handle(3, TableIndex.Field), 19565Handle(6, TableIndex.MethodDef), 19566Handle(11, TableIndex.MethodDef), 19567Handle(12, TableIndex.MethodDef), 19568Handle(9, TableIndex.Param), 19569Handle(10, TableIndex.Param), 19570Handle(11, TableIndex.Param), 19571Handle(12, TableIndex.Param), 19572Handle(10, TableIndex.CustomAttribute), 19573Handle(11, TableIndex.CustomAttribute), 19574Handle(12, TableIndex.CustomAttribute), 19575Handle(13, TableIndex.CustomAttribute), 19576Handle(3, TableIndex.StandAloneSig), 19577Handle(8, TableIndex.GenericParam), 19578Handle(9, TableIndex.GenericParam), 19579Handle(10, TableIndex.GenericParam), 19580Handle(11, TableIndex.GenericParam), 19581Handle(12, TableIndex.GenericParam) 19602Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 19603Row(10, TableIndex.TypeDef, EditAndContinueOperation.Default), 19604Row(11, TableIndex.TypeDef, EditAndContinueOperation.Default), 19605Row(11, TableIndex.TypeDef, EditAndContinueOperation.AddField), 19606Row(4, TableIndex.Field, EditAndContinueOperation.Default), 19607Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 19608Row(10, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19609Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 19610Row(10, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 19611Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 19612Row(13, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19613Row(13, TableIndex.Param, EditAndContinueOperation.Default), 19614Row(13, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19615Row(14, TableIndex.Param, EditAndContinueOperation.Default), 19616Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19617Row(15, TableIndex.Param, EditAndContinueOperation.Default), 19618Row(14, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 19619Row(16, TableIndex.Param, EditAndContinueOperation.Default), 19620Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19621Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19622Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19623Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 19624Row(13, TableIndex.GenericParam, EditAndContinueOperation.Default), 19625Row(14, TableIndex.GenericParam, EditAndContinueOperation.Default), 19626Row(15, TableIndex.GenericParam, EditAndContinueOperation.Default), 19627Row(16, TableIndex.GenericParam, EditAndContinueOperation.Default), 19628Row(17, TableIndex.GenericParam, EditAndContinueOperation.Default) 19633Handle(10, TableIndex.TypeDef), 19634Handle(11, TableIndex.TypeDef), 19635Handle(4, TableIndex.Field), 19636Handle(6, TableIndex.MethodDef), 19637Handle(13, TableIndex.MethodDef), 19638Handle(14, TableIndex.MethodDef), 19639Handle(13, TableIndex.Param), 19640Handle(14, TableIndex.Param), 19641Handle(15, TableIndex.Param), 19642Handle(16, TableIndex.Param), 19643Handle(14, TableIndex.CustomAttribute), 19644Handle(15, TableIndex.CustomAttribute), 19645Handle(16, TableIndex.CustomAttribute), 19646Handle(17, TableIndex.CustomAttribute), 19647Handle(4, TableIndex.StandAloneSig), 19648Handle(13, TableIndex.GenericParam), 19649Handle(14, TableIndex.GenericParam), 19650Handle(15, TableIndex.GenericParam), 19651Handle(16, TableIndex.GenericParam), 19652Handle(17, TableIndex.GenericParam)
PDB\PDBUsingTests.cs (1)
2997Assert.Equal(1, reader.GetTableRowCount(TableIndex.TypeSpec));
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (25)
Attributes\AttributeTests_Assembly.cs (10)
1066Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1112Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 1113Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1133Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 1134Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1187Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1227Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 1228Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1248Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 1249Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType));
Attributes\AttributeTests_StructLayout.cs (3)
45Assert.Equal(9, metadataReader.GetTableRowCount(TableIndex.ClassLayout)); 363Assert.Equal(2, reader.GetTableRowCount(TableIndex.FieldLayout)); 411Assert.Equal(2, reader.GetTableRowCount(TableIndex.FieldLayout));
Attributes\AttributeTests_WellKnownAttributes.cs (12)
2136Assert.Equal(15, metadataReader.GetTableRowCount(TableIndex.Param)); 2638Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 2639Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 2700Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.File)); 2703Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 2812Assert.Equal(4, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 2813Assert.Equal(5, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 2928Assert.Equal(cases.Length, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 3429Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 3430Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ImplMap)); 3461Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 3462Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ImplMap));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (9)
Symbols\Metadata\PE\TypeForwarders.cs (7)
1511Assert.Equal(forwardedTypeFullNames.Length, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1636Assert.Equal(1, peReader.GetTableRowCount(TableIndex.ExportedType)); 1647Assert.Equal(1, peReader1.GetTableRowCount(TableIndex.ExportedType)); 1690Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)); 1700Assert.Equal(0, peReader1.GetTableRowCount(TableIndex.ExportedType)); 1710Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)); 1780Assert.Equal(forwardedTypeFullNames.Length, peReader.GetTableRowCount(TableIndex.ExportedType));
Symbols\PartialPropertiesTests.cs (2)
839Assert.Equal(2, metadataReader.GetTableRowCount(TableIndex.ModuleRef)); 840Assert.Equal(2, metadataReader.GetTableRowCount(TableIndex.ImplMap));
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
PDB\MethodDebugInfo.Portable.cs (1)
97if (reader.GetTableRowCount(TableIndex.EncMap) == 0)
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditSession.cs (1)
139var highestExistingTypeDefRow = emitResult.Baseline.OriginalMetadata.GetMetadataReader().GetTableRowCount(TableIndex.TypeDef);
Microsoft.CodeAnalysis.Features.Test.Utilities (2)
EditAndContinue\EditAndContinueWorkspaceTestBase.cs (2)
388internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation) 401TableIndex tableIndex;
Microsoft.CodeAnalysis.Test.Utilities (6)
Metadata\MetadataReaderUtils.cs (5)
29for (int i = 1, n = reader.GetTableRowCount(TableIndex.Constant); i <= n; i++) 37for (int i = 1, n = reader.GetTableRowCount(TableIndex.Param); i <= n; i++) 45for (int i = 1, n = reader.GetTableRowCount(TableIndex.GenericParam); i <= n; i++) 53for (int i = 1, n = reader.GetTableRowCount(TableIndex.GenericParamConstraint); i <= n; i++) 61for (int i = 1, n = reader.GetTableRowCount(TableIndex.ModuleRef); i <= n; i++)
Metadata\MetadataValidation.cs (1)
136Assert.Equal(expectedMarshalCount, metadataReader.GetTableRowCount(TableIndex.FieldMarshal));
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1143)
Attributes\AssemblyAttributes.vb (10)
1298Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1335Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 1336Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1351Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 1352Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1415Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1446Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 1447Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1462Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 1463Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType))
Attributes\AttributeTests_StructLayout.vb (2)
69Assert.Equal(9, reader.GetTableRowCount(TableIndex.ClassLayout)) 597Assert.Equal(2, reader.GetTableRowCount(TableIndex.FieldLayout))
Attributes\AttributeTests_WellKnownAttributes.vb (21)
1420Assert.Equal(3, reader.GetTableRowCount(TableIndex.ModuleRef)) 1421Assert.Equal(3, reader.GetTableRowCount(TableIndex.ImplMap)) 1507Assert.Equal(0, reader.GetTableRowCount(TableIndex.File)) 1508Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 1656Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 1657Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 1689Assert.Equal(1, peFileReader.GetTableRowCount(TableIndex.ModuleRef)) 1690Assert.Equal(1, peFileReader.GetTableRowCount(TableIndex.ImplMap)) 1724Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 1725Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 1941Assert.Equal(cases.Length, reader.GetTableRowCount(TableIndex.ImplMap)) 2519Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 2520Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 2550Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 2551Assert.Equal(1, reader.GetTableRowCount(TableIndex.ImplMap)) 2769Assert.Equal(0, reader.GetTableRowCount(TableIndex.File)) 2770Assert.Equal(1, reader.GetTableRowCount(TableIndex.ModuleRef)) 2813Assert.Equal(4, peFileReader.GetTableRowCount(TableIndex.ModuleRef)) 2814Assert.Equal(4, peFileReader.GetTableRowCount(TableIndex.ImplMap)) 2973Assert.Equal(12, reader.GetTableRowCount(TableIndex.Param)) 3032Assert.Equal(3 + 3 + 1, reader.GetTableRowCount(TableIndex.Param))
Emit\EditAndContinue\EditAndContinueClosureTests.vb (98)
63Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 64Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 65Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 66Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 67Row(1, TableIndex.Field, EditAndContinueOperation.Default), 68Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 69Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 70Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 71Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 72Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 73Row(6, TableIndex.Param, EditAndContinueOperation.Default), 74Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 75Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default)) 124Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 125Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 126Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 127Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)) 175Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 176Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 177Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 178Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)) 226Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 227Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 228Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 229Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 230Row(1, TableIndex.Param, EditAndContinueOperation.Default), 231Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 280Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 281Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 282Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 283Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 284Row(1, TableIndex.Param, EditAndContinueOperation.Default)) 359Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 360Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 361Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 362Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 363Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 364Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 365Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 366Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 367Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 368Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 369Row(2, TableIndex.Param, EditAndContinueOperation.Default), 370Row(3, TableIndex.Param, EditAndContinueOperation.Default)) 444Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 445Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 446Row(7, TableIndex.TypeDef, EditAndContinueOperation.Default), 447Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddField), 448Row(11, TableIndex.Field, EditAndContinueOperation.Default), 449Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 450Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 451Row(7, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 452Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 453Row(6, TableIndex.Param, EditAndContinueOperation.Default), 454Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 455Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 456Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 646Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 647Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default), 648Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 649Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default)) 715Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 716Row(23, TableIndex.MethodDef, EditAndContinueOperation.Default), 717Row(27, TableIndex.MethodDef, EditAndContinueOperation.Default), 718Row(28, TableIndex.MethodDef, EditAndContinueOperation.Default), 719Row(29, TableIndex.MethodDef, EditAndContinueOperation.Default), 720Row(30, TableIndex.MethodDef, EditAndContinueOperation.Default), 721Row(31, TableIndex.MethodDef, EditAndContinueOperation.Default), 722Row(32, TableIndex.MethodDef, EditAndContinueOperation.Default), 723Row(33, TableIndex.MethodDef, EditAndContinueOperation.Default), 724Row(34, TableIndex.MethodDef, EditAndContinueOperation.Default), 725Row(14, TableIndex.Param, EditAndContinueOperation.Default), 726Row(15, TableIndex.Param, EditAndContinueOperation.Default), 727Row(16, TableIndex.Param, EditAndContinueOperation.Default), 728Row(17, TableIndex.Param, EditAndContinueOperation.Default), 729Row(18, TableIndex.Param, EditAndContinueOperation.Default), 730Row(19, TableIndex.Param, EditAndContinueOperation.Default), 731Row(20, TableIndex.Param, EditAndContinueOperation.Default), 732Row(21, TableIndex.Param, EditAndContinueOperation.Default), 733Row(22, TableIndex.Param, EditAndContinueOperation.Default), 734Row(23, TableIndex.Param, EditAndContinueOperation.Default)) 788Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 789Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 790Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 791Row(5, TableIndex.Param, EditAndContinueOperation.Default)) 852Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 853Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 854Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 855Row(5, TableIndex.Param, EditAndContinueOperation.Default)) 918Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 919Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 920Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 921Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 922Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 923Row(5, TableIndex.Param, EditAndContinueOperation.Default), 924Row(6, TableIndex.Param, EditAndContinueOperation.Default), 925Row(7, TableIndex.Param, EditAndContinueOperation.Default), 926Row(8, TableIndex.Param, EditAndContinueOperation.Default))
Emit\EditAndContinue\EditAndContinuePdbTests.vb (45)
163Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 164Row(5, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 165Row(6, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 166Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 167Row(5, TableIndex.Field, EditAndContinueOperation.Default), 168Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 169Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 170Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 171Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 172Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 173Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 174Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default)) 179Handle(11, TableIndex.MethodDebugInformation), 180Handle(13, TableIndex.MethodDebugInformation), 181Handle(16, TableIndex.MethodDebugInformation), 182Handle(17, TableIndex.MethodDebugInformation), 183Handle(18, TableIndex.MethodDebugInformation), 184Handle(19, TableIndex.MethodDebugInformation)) 266Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 267Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 268Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 269Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 270Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 271Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 272Row(6, TableIndex.Field, EditAndContinueOperation.Default), 273Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 274Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 275Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 276Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 277Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 278Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 279Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 280Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 281Row(20, TableIndex.MethodDef, EditAndContinueOperation.Default), 282Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 283Row(21, TableIndex.MethodDef, EditAndContinueOperation.Default)) 288Handle(10, TableIndex.MethodDebugInformation), 289Handle(11, TableIndex.MethodDebugInformation), 290Handle(13, TableIndex.MethodDebugInformation), 291Handle(16, TableIndex.MethodDebugInformation), 292Handle(17, TableIndex.MethodDebugInformation), 293Handle(18, TableIndex.MethodDebugInformation), 294Handle(19, TableIndex.MethodDebugInformation), 295Handle(20, TableIndex.MethodDebugInformation), 296Handle(21, TableIndex.MethodDebugInformation))
Emit\EditAndContinue\EditAndContinueStateMachineTests.vb (610)
66Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 67Row(17, TableIndex.MemberRef, EditAndContinueOperation.Default), 68Row(18, TableIndex.MemberRef, EditAndContinueOperation.Default), 69Row(19, TableIndex.MemberRef, EditAndContinueOperation.Default), 70Row(20, TableIndex.MemberRef, EditAndContinueOperation.Default), 71Row(21, TableIndex.MemberRef, EditAndContinueOperation.Default), 72Row(22, TableIndex.MemberRef, EditAndContinueOperation.Default), 73Row(23, TableIndex.MemberRef, EditAndContinueOperation.Default), 74Row(24, TableIndex.MemberRef, EditAndContinueOperation.Default), 75Row(25, TableIndex.MemberRef, EditAndContinueOperation.Default), 76Row(26, TableIndex.MemberRef, EditAndContinueOperation.Default), 77Row(27, TableIndex.MemberRef, EditAndContinueOperation.Default), 78Row(28, TableIndex.MemberRef, EditAndContinueOperation.Default), 79Row(29, TableIndex.MemberRef, EditAndContinueOperation.Default), 80Row(18, TableIndex.TypeRef, EditAndContinueOperation.Default), 81Row(19, TableIndex.TypeRef, EditAndContinueOperation.Default), 82Row(20, TableIndex.TypeRef, EditAndContinueOperation.Default), 83Row(21, TableIndex.TypeRef, EditAndContinueOperation.Default), 84Row(22, TableIndex.TypeRef, EditAndContinueOperation.Default), 85Row(23, TableIndex.TypeRef, EditAndContinueOperation.Default), 86Row(24, TableIndex.TypeRef, EditAndContinueOperation.Default), 87Row(25, TableIndex.TypeRef, EditAndContinueOperation.Default), 88Row(26, TableIndex.TypeRef, EditAndContinueOperation.Default), 89Row(27, TableIndex.TypeRef, EditAndContinueOperation.Default), 90Row(28, TableIndex.TypeRef, EditAndContinueOperation.Default), 91Row(29, TableIndex.TypeRef, EditAndContinueOperation.Default), 92Row(30, TableIndex.TypeRef, EditAndContinueOperation.Default), 93Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 94Row(4, TableIndex.TypeSpec, EditAndContinueOperation.Default), 95Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 96Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 97Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 98Row(2, TableIndex.PropertyMap, EditAndContinueOperation.Default), 99Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 100Row(5, TableIndex.Field, EditAndContinueOperation.Default), 101Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 102Row(6, TableIndex.Field, EditAndContinueOperation.Default), 103Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 104Row(7, TableIndex.Field, EditAndContinueOperation.Default), 105Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 106Row(8, TableIndex.Field, EditAndContinueOperation.Default), 107Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 108Row(11, TableIndex.MethodDef, EditAndContinueOperation.Default), 109Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 110Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 111Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 112Row(13, TableIndex.MethodDef, EditAndContinueOperation.Default), 113Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 114Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 115Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 116Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 117Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 118Row(16, TableIndex.MethodDef, EditAndContinueOperation.Default), 119Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 120Row(17, TableIndex.MethodDef, EditAndContinueOperation.Default), 121Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 122Row(18, TableIndex.MethodDef, EditAndContinueOperation.Default), 123Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 124Row(19, TableIndex.MethodDef, EditAndContinueOperation.Default), 125Row(2, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 126Row(3, TableIndex.Property, EditAndContinueOperation.Default), 127Row(2, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 128Row(4, TableIndex.Property, EditAndContinueOperation.Default), 129Row(12, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 130Row(2, TableIndex.Param, EditAndContinueOperation.Default), 131Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 132Row(14, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 133Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 134Row(16, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 135Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 136Row(18, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 137Row(19, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 138Row(20, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 139Row(21, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 140Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 141Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 142Row(8, TableIndex.MethodImpl, EditAndContinueOperation.Default), 143Row(9, TableIndex.MethodImpl, EditAndContinueOperation.Default), 144Row(10, TableIndex.MethodImpl, EditAndContinueOperation.Default), 145Row(11, TableIndex.MethodImpl, EditAndContinueOperation.Default), 146Row(12, TableIndex.MethodImpl, EditAndContinueOperation.Default), 147Row(13, TableIndex.MethodImpl, EditAndContinueOperation.Default), 148Row(14, TableIndex.MethodImpl, EditAndContinueOperation.Default), 149Row(2, TableIndex.NestedClass, EditAndContinueOperation.Default), 150Row(6, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 151Row(7, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 152Row(8, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 153Row(9, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 154Row(10, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 156Handle(18, TableIndex.TypeRef), 157Handle(19, TableIndex.TypeRef), 158Handle(20, TableIndex.TypeRef), 159Handle(21, TableIndex.TypeRef), 160Handle(22, TableIndex.TypeRef), 161Handle(23, TableIndex.TypeRef), 162Handle(24, TableIndex.TypeRef), 163Handle(25, TableIndex.TypeRef), 164Handle(26, TableIndex.TypeRef), 165Handle(27, TableIndex.TypeRef), 166Handle(28, TableIndex.TypeRef), 167Handle(29, TableIndex.TypeRef), 168Handle(30, TableIndex.TypeRef), 169Handle(4, TableIndex.TypeDef), 170Handle(5, TableIndex.Field), 171Handle(6, TableIndex.Field), 172Handle(7, TableIndex.Field), 173Handle(8, TableIndex.Field), 174Handle(11, TableIndex.MethodDef), 175Handle(12, TableIndex.MethodDef), 176Handle(13, TableIndex.MethodDef), 177Handle(14, TableIndex.MethodDef), 178Handle(15, TableIndex.MethodDef), 179Handle(16, TableIndex.MethodDef), 180Handle(17, TableIndex.MethodDef), 181Handle(18, TableIndex.MethodDef), 182Handle(19, TableIndex.MethodDef), 183Handle(2, TableIndex.Param), 184Handle(6, TableIndex.InterfaceImpl), 185Handle(7, TableIndex.InterfaceImpl), 186Handle(8, TableIndex.InterfaceImpl), 187Handle(9, TableIndex.InterfaceImpl), 188Handle(10, TableIndex.InterfaceImpl), 189Handle(17, TableIndex.MemberRef), 190Handle(18, TableIndex.MemberRef), 191Handle(19, TableIndex.MemberRef), 192Handle(20, TableIndex.MemberRef), 193Handle(21, TableIndex.MemberRef), 194Handle(22, TableIndex.MemberRef), 195Handle(23, TableIndex.MemberRef), 196Handle(24, TableIndex.MemberRef), 197Handle(25, TableIndex.MemberRef), 198Handle(26, TableIndex.MemberRef), 199Handle(27, TableIndex.MemberRef), 200Handle(28, TableIndex.MemberRef), 201Handle(29, TableIndex.MemberRef), 202Handle(13, TableIndex.CustomAttribute), 203Handle(14, TableIndex.CustomAttribute), 204Handle(15, TableIndex.CustomAttribute), 205Handle(16, TableIndex.CustomAttribute), 206Handle(17, TableIndex.CustomAttribute), 207Handle(18, TableIndex.CustomAttribute), 208Handle(19, TableIndex.CustomAttribute), 209Handle(20, TableIndex.CustomAttribute), 210Handle(21, TableIndex.CustomAttribute), 211Handle(3, TableIndex.StandAloneSig), 212Handle(4, TableIndex.StandAloneSig), 213Handle(2, TableIndex.PropertyMap), 214Handle(3, TableIndex.Property), 215Handle(4, TableIndex.Property), 216Handle(3, TableIndex.MethodSemantics), 217Handle(4, TableIndex.MethodSemantics), 218Handle(8, TableIndex.MethodImpl), 219Handle(9, TableIndex.MethodImpl), 220Handle(10, TableIndex.MethodImpl), 221Handle(11, TableIndex.MethodImpl), 222Handle(12, TableIndex.MethodImpl), 223Handle(13, TableIndex.MethodImpl), 224Handle(14, TableIndex.MethodImpl), 225Handle(3, TableIndex.TypeSpec), 226Handle(4, TableIndex.TypeSpec), 227Handle(2, TableIndex.AssemblyRef), 228Handle(2, TableIndex.NestedClass)) 420Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 421Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 422Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 423Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 424Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 425Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 426Row(9, TableIndex.MemberRef, EditAndContinueOperation.Default), 427Row(10, TableIndex.MemberRef, EditAndContinueOperation.Default), 428Row(11, TableIndex.MemberRef, EditAndContinueOperation.Default), 429Row(12, TableIndex.MemberRef, EditAndContinueOperation.Default), 430Row(13, TableIndex.MemberRef, EditAndContinueOperation.Default), 431Row(14, TableIndex.MemberRef, EditAndContinueOperation.Default), 432Row(15, TableIndex.MemberRef, EditAndContinueOperation.Default), 433Row(16, TableIndex.MemberRef, EditAndContinueOperation.Default), 434Row(17, TableIndex.MemberRef, EditAndContinueOperation.Default), 435Row(18, TableIndex.MemberRef, EditAndContinueOperation.Default), 436Row(19, TableIndex.MemberRef, EditAndContinueOperation.Default), 437Row(20, TableIndex.MemberRef, EditAndContinueOperation.Default), 438Row(21, TableIndex.MemberRef, EditAndContinueOperation.Default), 439Row(22, TableIndex.MemberRef, EditAndContinueOperation.Default), 440Row(23, TableIndex.MemberRef, EditAndContinueOperation.Default), 441Row(1, TableIndex.MethodSpec, EditAndContinueOperation.Default), 442Row(2, TableIndex.MethodSpec, EditAndContinueOperation.Default), 443Row(3, TableIndex.MethodSpec, EditAndContinueOperation.Default), 444Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 445Row(7, TableIndex.TypeRef, EditAndContinueOperation.Default), 446Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 447Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 448Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 449Row(11, TableIndex.TypeRef, EditAndContinueOperation.Default), 450Row(12, TableIndex.TypeRef, EditAndContinueOperation.Default), 451Row(13, TableIndex.TypeRef, EditAndContinueOperation.Default), 452Row(14, TableIndex.TypeRef, EditAndContinueOperation.Default), 453Row(15, TableIndex.TypeRef, EditAndContinueOperation.Default), 454Row(16, TableIndex.TypeRef, EditAndContinueOperation.Default), 455Row(17, TableIndex.TypeRef, EditAndContinueOperation.Default), 456Row(18, TableIndex.TypeRef, EditAndContinueOperation.Default), 457Row(1, TableIndex.TypeSpec, EditAndContinueOperation.Default), 458Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 459Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 460Row(1, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 461Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 462Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 463Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 464Row(1, TableIndex.Field, EditAndContinueOperation.Default), 465Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 466Row(2, TableIndex.Field, EditAndContinueOperation.Default), 467Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 468Row(3, TableIndex.Field, EditAndContinueOperation.Default), 469Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 470Row(4, TableIndex.Field, EditAndContinueOperation.Default), 471Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 472Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 473Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 474Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 475Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 476Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 477Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 478Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 479Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 480Row(1, TableIndex.Param, EditAndContinueOperation.Default), 481Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 482Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 483Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 484Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 485Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 486Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 487Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 488Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 489Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 491Handle(6, TableIndex.TypeRef), 492Handle(7, TableIndex.TypeRef), 493Handle(8, TableIndex.TypeRef), 494Handle(9, TableIndex.TypeRef), 495Handle(10, TableIndex.TypeRef), 496Handle(11, TableIndex.TypeRef), 497Handle(12, TableIndex.TypeRef), 498Handle(13, TableIndex.TypeRef), 499Handle(14, TableIndex.TypeRef), 500Handle(15, TableIndex.TypeRef), 501Handle(16, TableIndex.TypeRef), 502Handle(17, TableIndex.TypeRef), 503Handle(18, TableIndex.TypeRef), 504Handle(3, TableIndex.TypeDef), 505Handle(1, TableIndex.Field), 506Handle(2, TableIndex.Field), 507Handle(3, TableIndex.Field), 508Handle(4, TableIndex.Field), 509Handle(2, TableIndex.MethodDef), 510Handle(3, TableIndex.MethodDef), 511Handle(4, TableIndex.MethodDef), 512Handle(5, TableIndex.MethodDef), 513Handle(1, TableIndex.Param), 514Handle(1, TableIndex.InterfaceImpl), 515Handle(5, TableIndex.MemberRef), 516Handle(6, TableIndex.MemberRef), 517Handle(7, TableIndex.MemberRef), 518Handle(8, TableIndex.MemberRef), 519Handle(9, TableIndex.MemberRef), 520Handle(10, TableIndex.MemberRef), 521Handle(11, TableIndex.MemberRef), 522Handle(12, TableIndex.MemberRef), 523Handle(13, TableIndex.MemberRef), 524Handle(14, TableIndex.MemberRef), 525Handle(15, TableIndex.MemberRef), 526Handle(16, TableIndex.MemberRef), 527Handle(17, TableIndex.MemberRef), 528Handle(18, TableIndex.MemberRef), 529Handle(19, TableIndex.MemberRef), 530Handle(20, TableIndex.MemberRef), 531Handle(21, TableIndex.MemberRef), 532Handle(22, TableIndex.MemberRef), 533Handle(23, TableIndex.MemberRef), 534Handle(4, TableIndex.CustomAttribute), 535Handle(5, TableIndex.CustomAttribute), 536Handle(6, TableIndex.CustomAttribute), 537Handle(7, TableIndex.CustomAttribute), 538Handle(8, TableIndex.CustomAttribute), 539Handle(1, TableIndex.StandAloneSig), 540Handle(2, TableIndex.StandAloneSig), 541Handle(1, TableIndex.MethodImpl), 542Handle(2, TableIndex.MethodImpl), 543Handle(1, TableIndex.TypeSpec), 544Handle(2, TableIndex.TypeSpec), 545Handle(3, TableIndex.TypeSpec), 546Handle(2, TableIndex.AssemblyRef), 547Handle(3, TableIndex.AssemblyRef), 548Handle(1, TableIndex.NestedClass), 549Handle(1, TableIndex.MethodSpec), 550Handle(2, TableIndex.MethodSpec), 551Handle(3, TableIndex.MethodSpec)) 750Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 751Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 752Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 753Row(1, TableIndex.PropertyMap, EditAndContinueOperation.Default), 754Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 755Row(1, TableIndex.Field, EditAndContinueOperation.Default), 756Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 757Row(2, TableIndex.Field, EditAndContinueOperation.Default), 758Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 759Row(3, TableIndex.Field, EditAndContinueOperation.Default), 760Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 761Row(4, TableIndex.Field, EditAndContinueOperation.Default), 762Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 763Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 764Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 765Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 766Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 767Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 768Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 769Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 770Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 771Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 772Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 773Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 774Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 775Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 776Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 777Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 778Row(10, TableIndex.MethodDef, EditAndContinueOperation.Default), 779Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 780Row(1, TableIndex.Property, EditAndContinueOperation.Default), 781Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), 782Row(2, TableIndex.Property, EditAndContinueOperation.Default), 783Row(3, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 784Row(1, TableIndex.Param, EditAndContinueOperation.Default), 785Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 786Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 787Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 788Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 789Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 790Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 791Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 792Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 793Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 794Row(1, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 795Row(2, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 796Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 797Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 798Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 799Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 800Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 801Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 802Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 803Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 804Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 805Row(2, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 806Row(3, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 807Row(4, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 808Row(5, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 858Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 859Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 860Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 861Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 862Row(1, TableIndex.Field, EditAndContinueOperation.Default), 863Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 864Row(2, TableIndex.Field, EditAndContinueOperation.Default), 865Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 866Row(3, TableIndex.Field, EditAndContinueOperation.Default), 867Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 868Row(4, TableIndex.Field, EditAndContinueOperation.Default), 869Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 870Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 871Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 872Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 873Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 874Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 875Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 876Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 877Row(1, TableIndex.Param, EditAndContinueOperation.Default), 878Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 879Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 880Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 881Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 882Row(8, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 883Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 884Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 885Row(1, TableIndex.NestedClass, EditAndContinueOperation.Default), 886Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 933Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 934Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 935Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 981Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 982Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 983Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 984Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 1071Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1072Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1073Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1074Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1075Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1076Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1077Row(6, TableIndex.TypeDef, EditAndContinueOperation.Default), 1078Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddField), 1079Row(16, TableIndex.Field, EditAndContinueOperation.Default), 1080Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1081Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1082Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1083Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1084Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 1085Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 1086Row(6, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1087Row(14, TableIndex.MethodDef, EditAndContinueOperation.Default), 1088Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1089Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1090Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1091Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1092Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1093Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1094Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1095Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1096Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1097Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1098Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1099Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1180Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1181Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1182Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1183Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1184Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1185Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1186Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1187Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 1366Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1367Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 1368Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1369Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1370Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1371Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1372Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 3608Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3609Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3610Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3611Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3612Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3613Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3614Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3615Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3616Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 3713Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3714Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3715Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3716Row(8, TableIndex.Field, EditAndContinueOperation.Default), 3717Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3718Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3719Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3720Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3721Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3722Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3723Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 3823Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3824Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3825Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3826Row(8, TableIndex.Field, EditAndContinueOperation.Default), 3827Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3828Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3829Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3830Row(1, TableIndex.Param, EditAndContinueOperation.Default), 3831Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3832Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3833Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 3929Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3930Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 3931Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 3932Row(6, TableIndex.Field, EditAndContinueOperation.Default), 3933Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 3934Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 3935Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 3936Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3937Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 3938Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 4062Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4063Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 4064Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4065Row(8, TableIndex.Field, EditAndContinueOperation.Default), 4066Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 4067Row(9, TableIndex.Field, EditAndContinueOperation.Default), 4068Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 4069Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 4070Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 4071Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4072Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 4073Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 6385Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6386Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6387Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6388Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6389Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6390Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6391Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6392Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 6538Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6539Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6540Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6541Row(7, TableIndex.Field, EditAndContinueOperation.Default), 6542Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6543Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6544Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6545Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6546Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6547Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 6696Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6697Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6698Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6699Row(7, TableIndex.Field, EditAndContinueOperation.Default), 6700Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6701Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6702Row(1, TableIndex.Param, EditAndContinueOperation.Default), 6703Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6704Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6705Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 6850Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6851Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6852Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6853Row(6, TableIndex.Field, EditAndContinueOperation.Default), 6854Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6855Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 6856Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6857Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 6858Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7140Row(7, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7141Row(8, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7142Row(9, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7143Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7144Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7145Row(19, TableIndex.Field, EditAndContinueOperation.Default), 7146Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7147Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7148Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7149Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7150Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7151Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7152Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7153Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7154Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7155Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7260Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7261Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7262Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7263Row(20, TableIndex.Field, EditAndContinueOperation.Default), 7264Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7265Row(21, TableIndex.Field, EditAndContinueOperation.Default), 7266Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7267Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7268Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7269Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7270Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7375Row(13, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7376Row(14, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7377Row(15, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7378Row(16, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7379Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7380Row(22, TableIndex.Field, EditAndContinueOperation.Default), 7381Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7382Row(23, TableIndex.Field, EditAndContinueOperation.Default), 7383Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 7384Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7385Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7386Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7387Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7388Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7389Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7390Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7391Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7392Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7641Row(10, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7642Row(11, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7643Row(12, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7644Row(13, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7645Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7646Row(14, TableIndex.Field, EditAndContinueOperation.Default), 7647Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7648Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7649Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7650Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7651Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7652Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7653Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7654Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7655Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7656Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7804Row(14, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7805Row(15, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7806Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7807Row(15, TableIndex.Field, EditAndContinueOperation.Default), 7808Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 7809Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default), 7810Row(6, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7811Row(7, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7812Row(13, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 7960Row(16, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7961Row(17, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7962Row(18, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7963Row(19, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7964Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7965Row(16, TableIndex.Field, EditAndContinueOperation.Default), 7966Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7967Row(17, TableIndex.Field, EditAndContinueOperation.Default), 7968Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 7969Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 7970Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default), 7971Row(15, TableIndex.MethodDef, EditAndContinueOperation.Default), 7972Row(9, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7973Row(10, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7974Row(11, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7975Row(12, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7976Row(15, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 7977Row(17, TableIndex.CustomAttribute, EditAndContinueOperation.Default))
Emit\EditAndContinue\EditAndContinueTestBase.vb (2)
190Friend Shared Function Row(rowNumber As Integer, table As TableIndex, operation As EditAndContinueOperation) As EditAndContinueLogEntry 194Friend Shared Function Handle(rowNumber As Integer, table As TableIndex) As EntityHandle
Emit\EditAndContinue\EditAndContinueTests.vb (352)
204Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 205Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 206Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 207Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 208Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 209Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 210Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 211Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) ' C.F 213Handle(8, TableIndex.TypeRef), 214Handle(9, TableIndex.TypeRef), 215Handle(3, TableIndex.MethodDef), 216Handle(7, TableIndex.MemberRef), 217Handle(2, TableIndex.StandAloneSig), 218Handle(2, TableIndex.TypeSpec), 219Handle(3, TableIndex.AssemblyRef), 220Handle(4, TableIndex.AssemblyRef)) 267Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 268Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 269Row(1, TableIndex.Param, EditAndContinueOperation.Default)) 272Handle(2, TableIndex.MethodDef), 273Handle(1, TableIndex.Param), 274Handle(2, TableIndex.StandAloneSig)) 311Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 312Row(1, TableIndex.Param, EditAndContinueOperation.Default) 317Handle(2, TableIndex.MethodDef), 318Handle(1, TableIndex.Param) 369Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 370Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 371Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) 373Handle(6, TableIndex.TypeRef), 374Handle(3, TableIndex.MethodDef), 375Handle(2, TableIndex.AssemblyRef)) 449Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 450Row(4, TableIndex.MemberRef, EditAndContinueOperation.Default), 451Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 452Row(6, TableIndex.MemberRef, EditAndContinueOperation.Default), 453Row(5, TableIndex.TypeRef, EditAndContinueOperation.Default), 454Row(1, TableIndex.TypeSpec, EditAndContinueOperation.Default), 455Row(2, TableIndex.TypeSpec, EditAndContinueOperation.Default), 456Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 457Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 458Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 459Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 460Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 461Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 462Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 463Row(1, TableIndex.InterfaceImpl, EditAndContinueOperation.Default), 464Row(2, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 466Handle(5, TableIndex.TypeRef), 467Handle(3, TableIndex.TypeDef), 468Handle(2, TableIndex.MethodDef), 469Handle(3, TableIndex.MethodDef), 470Handle(1, TableIndex.InterfaceImpl), 471Handle(2, TableIndex.InterfaceImpl), 472Handle(4, TableIndex.MemberRef), 473Handle(5, TableIndex.MemberRef), 474Handle(6, TableIndex.MemberRef), 475Handle(1, TableIndex.MethodImpl), 476Handle(2, TableIndex.MethodImpl), 477Handle(1, TableIndex.TypeSpec), 478Handle(2, TableIndex.TypeSpec), 479Handle(2, TableIndex.AssemblyRef)) 492Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 493Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 494Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 495Row(4, TableIndex.TypeSpec, EditAndContinueOperation.Default), 496Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) 498Handle(6, TableIndex.TypeRef), 499Handle(3, TableIndex.MethodDef), 500Handle(3, TableIndex.TypeSpec), 501Handle(4, TableIndex.TypeSpec), 502Handle(3, TableIndex.AssemblyRef)) 515Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 516Row(7, TableIndex.MemberRef, EditAndContinueOperation.Default), 517Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 518Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 519Row(3, TableIndex.TypeSpec, EditAndContinueOperation.Default), 520Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 521Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 522Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 523Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 524Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 525Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 526Row(3, TableIndex.InterfaceImpl, EditAndContinueOperation.Default)) 528Handle(6, TableIndex.TypeRef), 529Handle(4, TableIndex.TypeDef), 530Handle(4, TableIndex.MethodDef), 531Handle(5, TableIndex.MethodDef), 532Handle(3, TableIndex.InterfaceImpl), 533Handle(7, TableIndex.MemberRef), 534Handle(8, TableIndex.MemberRef), 535Handle(3, TableIndex.MethodImpl), 536Handle(3, TableIndex.TypeSpec), 537Handle(3, TableIndex.AssemblyRef)) 582Row(2, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 583Row(5, TableIndex.MemberRef, EditAndContinueOperation.Default), 584Row(6, TableIndex.TypeRef, EditAndContinueOperation.Default), 585Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) 587Handle(6, TableIndex.TypeRef), 588Handle(3, TableIndex.MethodDef), 589Handle(5, TableIndex.MemberRef), 590Handle(2, TableIndex.AssemblyRef)) 1467Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 1468Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 1469Row(1, TableIndex.Field, EditAndContinueOperation.Default), 1470Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1471Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1472Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1473Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1474Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default) 1528Row(1, TableIndex.Event, EditAndContinueOperation.Default), 1529Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1530Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1531Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 1532Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1533Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1534Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1535Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1536Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 1630Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 1631Row(1, TableIndex.Event, EditAndContinueOperation.Default), 1632Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 1633Row(1, TableIndex.Field, EditAndContinueOperation.Default), 1634Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1635Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1636Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1637Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1638Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1639Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1640Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1641Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 1642Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 1643Row(3, TableIndex.Param, EditAndContinueOperation.Default), 1644Row(6, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 1645Row(4, TableIndex.Param, EditAndContinueOperation.Default), 1646Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1647Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1648Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 1726Row(1, TableIndex.Event, EditAndContinueOperation.Default), 1727Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1728Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 1729Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 1730Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 1731Row(1, TableIndex.Param, EditAndContinueOperation.Default), 1732Row(2, TableIndex.Param, EditAndContinueOperation.Default), 1733Row(7, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1734Row(8, TableIndex.MethodSemantics, EditAndContinueOperation.Default), 1735Row(9, TableIndex.MethodSemantics, EditAndContinueOperation.Default) 1824Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 1825Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 1828Handle(2, TableIndex.TypeDef), 1829Handle(4, TableIndex.CustomAttribute)) 1845Row(2, TableIndex.TypeDef, EditAndContinueOperation.Default), 1846Row(4, TableIndex.CustomAttribute, EditAndContinueOperation.Default), 1847Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 1850Handle(2, TableIndex.TypeDef), 1851Handle(4, TableIndex.CustomAttribute), 1852Handle(5, TableIndex.CustomAttribute)) 1959Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.Default), ' adding a type def 1960Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1961Row(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef, EditAndContinueOperation.Default), 1962Row(baseTypeCount + generation, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 1963Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.Default), 1964Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 1965Row(baseParameterCount + generation * 2 - 1, TableIndex.Param, EditAndContinueOperation.Default), 1966Row(baseMethodCount + generation * 2, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 1967Row(baseParameterCount + generation * 2, TableIndex.Param, EditAndContinueOperation.Default), 1968If(hasAttribute, Row(baseAttributeCount + generation, TableIndex.CustomAttribute, EditAndContinueOperation.Default), Nothing)) ' adding a new attribute row for attribute on C#* definition 1971Handle(baseTypeCount + generation, TableIndex.TypeDef), 1972Handle(baseMethodCount + generation * 2 - 1, TableIndex.MethodDef), 1973Handle(baseMethodCount + generation * 2, TableIndex.MethodDef), 1974Handle(baseParameterCount + generation * 2 - 1, TableIndex.Param), 1975Handle(baseParameterCount + generation * 2, TableIndex.Param), 1976If(hasAttribute, Handle(baseAttributeCount + generation, TableIndex.CustomAttribute), Nothing)) 2031Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 2032Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 2033Row(5, TableIndex.Param, EditAndContinueOperation.Default), 2034Row(6, TableIndex.Param, EditAndContinueOperation.Default), 2035Row(If(hasAttribute, 9, 8), TableIndex.CustomAttribute, EditAndContinueOperation.Default)) 2038Handle(5, TableIndex.TypeDef), 2039Handle(8, TableIndex.MethodDef), 2040Handle(5, TableIndex.Param), 2041Handle(6, TableIndex.Param), 2042Handle(If(hasAttribute, 9, 8), TableIndex.CustomAttribute)) 2092Row(3, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 2093Row(4, TableIndex.AssemblyRef, EditAndContinueOperation.Default), 2094Row(8, TableIndex.MemberRef, EditAndContinueOperation.Default), 2095Row(9, TableIndex.MemberRef, EditAndContinueOperation.Default), 2096Row(8, TableIndex.TypeRef, EditAndContinueOperation.Default), 2097Row(9, TableIndex.TypeRef, EditAndContinueOperation.Default), 2098Row(10, TableIndex.TypeRef, EditAndContinueOperation.Default), 2099Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2100Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default)) 2102Handle(8, TableIndex.TypeRef), 2103Handle(9, TableIndex.TypeRef), 2104Handle(10, TableIndex.TypeRef), 2105Handle(3, TableIndex.MethodDef), 2106Handle(8, TableIndex.MemberRef), 2107Handle(9, TableIndex.MemberRef), 2108Handle(2, TableIndex.StandAloneSig), 2109Handle(3, TableIndex.AssemblyRef), 2110Handle(4, TableIndex.AssemblyRef)) 2319Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2320Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), ' HotReloadException 2321Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2322Row(1, TableIndex.Field, EditAndContinueOperation.Default), ' HotReloadException.Code 2323Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), ' Action<int> get_P 2324Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), ' set_P(Action<int>) 2325Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), ' Action<bool> get_P 2326Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 2327Row(2, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), ' set_P(Action<bool>) 2328Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 2329Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2330Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), ' HotReloadException..ctor 2331Row(1, TableIndex.PropertyMap, EditAndContinueOperation.AddProperty), ' Action<bool> P 2332Row(2, TableIndex.Property, EditAndContinueOperation.Default), 2333Row(5, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 2334Row(2, TableIndex.Param, EditAndContinueOperation.Default), 2335Row(3, TableIndex.MethodSemantics, EditAndContinueOperation.Default), ' Action<bool> P <-> Action<bool> get_P 2336Row(4, TableIndex.MethodSemantics, EditAndContinueOperation.Default) ' Action<bool> P <-> set_P(Action<bool>) 2420Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2421Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), ' Action<bool> get_P 2422Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), ' set_P(Action<bool>) 2423Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), ' Action<int> get_P 2424Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), ' set_P(Action<int>) 2425Row(1, TableIndex.Property, EditAndContinueOperation.Default), ' Action<int> P 2426Row(1, TableIndex.Param, EditAndContinueOperation.Default), 2427Row(5, TableIndex.MethodSemantics, EditAndContinueOperation.Default), ' Action<int> P <-> Action<int> get_P 2428Row(6, TableIndex.MethodSemantics, EditAndContinueOperation.Default) ' Action<int> P <-> set_P(Action<int>) 2515Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 2516Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2517Row(1, TableIndex.Field, EditAndContinueOperation.Default), 2518Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 2519Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 2520Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2521Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default) 2574Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2575Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default) 2643Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 2644Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 2645Row(1, TableIndex.Field, EditAndContinueOperation.Default), 2646Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 2647Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 2648Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default) 2701Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 2702Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default) 5960Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 5961Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 5962Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 5963Row(4, TableIndex.Field, EditAndContinueOperation.Default), 5964Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 5965Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 5966Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 5967Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 5968Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 5973Handle(4, TableIndex.TypeDef), 5974Handle(4, TableIndex.Field), 5975Handle(2, TableIndex.MethodDef), 5976Handle(5, TableIndex.MethodDef), 5977Handle(6, TableIndex.MethodDef), 5978Handle(7, TableIndex.MethodDef), 5979Handle(2, TableIndex.StandAloneSig) 6070Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6071Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6072Row(3, TableIndex.Field, EditAndContinueOperation.Default), 6073Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6074Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6075Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6076Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default) 6081Handle(4, TableIndex.TypeDef), 6082Handle(3, TableIndex.Field), 6083Handle(2, TableIndex.MethodDef), 6084Handle(5, TableIndex.MethodDef), 6085Handle(6, TableIndex.MethodDef) 6144Row(2, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 6145Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6146Row(4, TableIndex.Field, EditAndContinueOperation.Default), 6147Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6148Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 6149Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6150Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 6155Handle(4, TableIndex.Field), 6156Handle(2, TableIndex.MethodDef), 6157Handle(3, TableIndex.MethodDef), 6158Handle(7, TableIndex.MethodDef), 6159Handle(2, TableIndex.StandAloneSig) 6225Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6226Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default) 6231Handle(2, TableIndex.MethodDef), 6232Handle(7, TableIndex.MethodDef) 6321Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 6322Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6323Row(3, TableIndex.Field, EditAndContinueOperation.Default), 6324Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 6325Row(5, TableIndex.MethodDef, EditAndContinueOperation.Default), 6326Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6327Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default) 6331Handle(4, TableIndex.TypeDef), 6332Handle(3, TableIndex.Field), 6333Handle(2, TableIndex.MethodDef), 6334Handle(5, TableIndex.MethodDef), 6335Handle(6, TableIndex.MethodDef) 6458Row(5, TableIndex.TypeDef, EditAndContinueOperation.Default), 6459Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddField), 6460Row(5, TableIndex.Field, EditAndContinueOperation.Default), 6461Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 6462Row(6, TableIndex.MethodDef, EditAndContinueOperation.Default), 6463Row(7, TableIndex.MethodDef, EditAndContinueOperation.Default), 6464Row(8, TableIndex.MethodDef, EditAndContinueOperation.Default), 6465Row(5, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 6466Row(9, TableIndex.MethodDef, EditAndContinueOperation.Default) 6471Handle(5, TableIndex.TypeDef), 6472Handle(5, TableIndex.Field), 6473Handle(3, TableIndex.MethodDef), 6474Handle(6, TableIndex.MethodDef), 6475Handle(7, TableIndex.MethodDef), 6476Handle(8, TableIndex.MethodDef), 6477Handle(9, TableIndex.MethodDef) 6609Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default), 6610Row(12, TableIndex.MethodDef, EditAndContinueOperation.Default) 6615Handle(3, TableIndex.MethodDef), 6616Handle(12, TableIndex.MethodDef) 7268Row(3, TableIndex.TypeDef, EditAndContinueOperation.Default), 7269Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddField), 7270Row(1, TableIndex.Field, EditAndContinueOperation.Default), 7271Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7272Row(3, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7273Row(3, TableIndex.MethodDef, EditAndContinueOperation.Default) 7278Handle(3, TableIndex.TypeDef), 7279Handle(1, TableIndex.Field), 7280Handle(2, TableIndex.MethodDef), 7281Handle(3, TableIndex.MethodDef) 7471Row(1, TableIndex.MethodDef, EditAndContinueOperation.Default) 7476Handle(1, TableIndex.MethodDef) 7611Row(3, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7612Row(4, TableIndex.StandAloneSig, EditAndContinueOperation.Default), 7613Row(4, TableIndex.TypeDef, EditAndContinueOperation.Default), 7614Row(2, TableIndex.MethodDef, EditAndContinueOperation.Default), 7615Row(4, TableIndex.TypeDef, EditAndContinueOperation.AddMethod), 7616Row(4, TableIndex.MethodDef, EditAndContinueOperation.Default), 7617Row(1, TableIndex.Param, EditAndContinueOperation.Default), 7618Row(4, TableIndex.MethodDef, EditAndContinueOperation.AddParameter), 7619Row(3, TableIndex.Param, EditAndContinueOperation.Default), 7620Row(5, TableIndex.CustomAttribute, EditAndContinueOperation.Default) 7625Handle(4, TableIndex.TypeDef), 7626Handle(2, TableIndex.MethodDef), 7627Handle(4, TableIndex.MethodDef), 7628Handle(1, TableIndex.Param), 7629Handle(3, TableIndex.Param), 7630Handle(5, TableIndex.CustomAttribute), 7631Handle(3, TableIndex.StandAloneSig), 7632Handle(4, TableIndex.StandAloneSig)
Emit\EmitMetadata.vb (3)
287Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.File)) 288Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ModuleRef)) 322Assert.Equal(2, reader.GetTableRowCount(TableIndex.File))
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (4)
Semantics\FieldInitializerBindingTests.vb (4)
899Assert.Equal(6, reader.GetTableRowCount(TableIndex.Constant)) 967Assert.Equal(10, reader.GetTableRowCount(TableIndex.Constant)) 1305Assert.Equal(FIELD_COUNT - ATTR_CONST_COUNT + ENUM_CONST_COUNT, reader.GetTableRowCount(TableIndex.Constant)) 1306Assert.Equal(FIELD_COUNT, reader.GetTableRowCount(TableIndex.Param))
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (9)
SymbolsTests\Metadata\PE\TypeForwarders.vb (9)
1024Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)) 1065Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1073Assert.Equal(0, peReader1.GetTableRowCount(TableIndex.ExportedType)) 1118Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1128Assert.Equal(1, metadataReader1.GetTableRowCount(TableIndex.ExportedType)) 1178Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1187Assert.Equal(0, metadataReader1.GetTableRowCount(TableIndex.ExportedType)) 1198Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1307Assert.Equal(2, peReader1.GetTableRowCount(TableIndex.ExportedType))
Microsoft.DotNet.Build.Tasks.Packaging (1)
GetAssemblyReferences.cs (1)
69for (int i = 1, count = reader.GetTableRowCount(TableIndex.ModuleRef); i <= count; i++)
Microsoft.DotNet.GenFacades (3)
ClearAssemblyReferenceVersions.cs (3)
36int assemblyRefOffset = mdReader.GetTableMetadataOffset(TableIndex.AssemblyRef); 37int numAssemblyRef = mdReader.GetTableRowCount(TableIndex.AssemblyRef); 38int sizeAssemblyRefRow = mdReader.GetTableRowSize(TableIndex.AssemblyRef);
Microsoft.DotNet.PackageTesting (2)
VerifyClosure.cs (2)
457var count = reader.GetTableRowCount(TableIndex.AssemblyRef); 471var count = reader.GetTableRowCount(TableIndex.ModuleRef);
Microsoft.DotNet.SharedFramework.Sdk (2)
src\Microsoft.DotNet.PackageTesting\VerifyClosure.cs (2)
457var count = reader.GetTableRowCount(TableIndex.AssemblyRef); 471var count = reader.GetTableRowCount(TableIndex.ModuleRef);
Roslyn.Test.PdbUtilities (4)
EditAndContinue\EditAndContinueTest.GenerationVerifier.cs (1)
75internal void VerifyTableSize(TableIndex table, int expected)
EditAndContinue\EditAndContinueTestUtilities.cs (3)
40TableIndex tableIndex; 52TableIndex tableIndex; 63TableIndex parentTableIndex, constructorTableIndex;
SemanticSearch.BuildTask (6)
GenerateFilteredReferenceAssembliesTask.cs (6)
439var tableOffset = metadataOffset + metadataReader.GetTableMetadataOffset(TableIndex.TypeDef); 440var tableRowSize = metadataReader.GetTableRowSize(TableIndex.TypeDef); 479var tableOffset = metadataOffset + metadataReader.GetTableMetadataOffset(TableIndex.MethodDef); 480var tableRowSize = metadataReader.GetTableRowSize(TableIndex.MethodDef); 513var tableOffset = metadataOffset + metadataReader.GetTableMetadataOffset(TableIndex.Field); 514var tableRowSize = metadataReader.GetTableRowSize(TableIndex.Field);
System.Reflection.Emit (2)
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
443AddLocalScope(methodHandle, parentImport: default, MetadataTokens.LocalVariableHandle(_pdbBuilder.GetRowCount(TableIndex.LocalVariable) + 1), scope); 524AddLocalScope(methodHandle, parentImport, MetadataTokens.LocalVariableHandle(_pdbBuilder.GetRowCount(TableIndex.LocalVariable) + 1), childScope);
System.Reflection.Metadata (692)
System\Reflection\Metadata\Ecma335\MetadataAggregator.cs (3)
61if (baseReader.GetTableRowCount(TableIndex.EncMap) != 0) 94if (deltaReaders[i].GetTableRowCount(TableIndex.EncMap) == 0 || !deltaReaders[i].IsMinimalDelta) 121rowCounts[i] = baseReader.GetTableRowCount((TableIndex)i);
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (208)
138public void SetCapacity(TableIndex table, int rowCount) 147case TableIndex.Module: break; // no-op, max row count is 1 148case TableIndex.TypeRef: SetTableCapacity(_typeRefTable, rowCount); break; 149case TableIndex.TypeDef: SetTableCapacity(_typeDefTable, rowCount); break; 150case TableIndex.Field: SetTableCapacity(_fieldTable, rowCount); break; 151case TableIndex.MethodDef: SetTableCapacity(_methodDefTable, rowCount); break; 152case TableIndex.Param: SetTableCapacity(_paramTable, rowCount); break; 153case TableIndex.InterfaceImpl: SetTableCapacity(_interfaceImplTable, rowCount); break; 154case TableIndex.MemberRef: SetTableCapacity(_memberRefTable, rowCount); break; 155case TableIndex.Constant: SetTableCapacity(_constantTable, rowCount); break; 156case TableIndex.CustomAttribute: SetTableCapacity(_customAttributeTable, rowCount); break; 157case TableIndex.FieldMarshal: SetTableCapacity(_fieldMarshalTable, rowCount); break; 158case TableIndex.DeclSecurity: SetTableCapacity(_declSecurityTable, rowCount); break; 159case TableIndex.ClassLayout: SetTableCapacity(_classLayoutTable, rowCount); break; 160case TableIndex.FieldLayout: SetTableCapacity(_fieldLayoutTable, rowCount); break; 161case TableIndex.StandAloneSig: SetTableCapacity(_standAloneSigTable, rowCount); break; 162case TableIndex.EventMap: SetTableCapacity(_eventMapTable, rowCount); break; 163case TableIndex.Event: SetTableCapacity(_eventTable, rowCount); break; 164case TableIndex.PropertyMap: SetTableCapacity(_propertyMapTable, rowCount); break; 165case TableIndex.Property: SetTableCapacity(_propertyTable, rowCount); break; 166case TableIndex.MethodSemantics: SetTableCapacity(_methodSemanticsTable, rowCount); break; 167case TableIndex.MethodImpl: SetTableCapacity(_methodImplTable, rowCount); break; 168case TableIndex.ModuleRef: SetTableCapacity(_moduleRefTable, rowCount); break; 169case TableIndex.TypeSpec: SetTableCapacity(_typeSpecTable, rowCount); break; 170case TableIndex.ImplMap: SetTableCapacity(_implMapTable, rowCount); break; 171case TableIndex.FieldRva: SetTableCapacity(_fieldRvaTable, rowCount); break; 172case TableIndex.EncLog: SetTableCapacity(_encLogTable, rowCount); break; 173case TableIndex.EncMap: SetTableCapacity(_encMapTable, rowCount); break; 174case TableIndex.Assembly: break; // no-op, max row count is 1 175case TableIndex.AssemblyRef: SetTableCapacity(_assemblyRefTable, rowCount); break; 176case TableIndex.File: SetTableCapacity(_fileTable, rowCount); break; 177case TableIndex.ExportedType: SetTableCapacity(_exportedTypeTable, rowCount); break; 178case TableIndex.ManifestResource: SetTableCapacity(_manifestResourceTable, rowCount); break; 179case TableIndex.NestedClass: SetTableCapacity(_nestedClassTable, rowCount); break; 180case TableIndex.GenericParam: SetTableCapacity(_genericParamTable, rowCount); break; 181case TableIndex.MethodSpec: SetTableCapacity(_methodSpecTable, rowCount); break; 182case TableIndex.GenericParamConstraint: SetTableCapacity(_genericParamConstraintTable, rowCount); break; 183case TableIndex.Document: SetTableCapacity(_documentTable, rowCount); break; 184case TableIndex.MethodDebugInformation: SetTableCapacity(_methodDebugInformationTable, rowCount); break; 185case TableIndex.LocalScope: SetTableCapacity(_localScopeTable, rowCount); break; 186case TableIndex.LocalVariable: SetTableCapacity(_localVariableTable, rowCount); break; 187case TableIndex.LocalConstant: SetTableCapacity(_localConstantTable, rowCount); break; 188case TableIndex.ImportScope: SetTableCapacity(_importScopeTable, rowCount); break; 189case TableIndex.StateMachineMethod: SetTableCapacity(_stateMachineMethodTable, rowCount); break; 190case TableIndex.CustomDebugInformation: SetTableCapacity(_customDebugInformationTable, rowCount); break; 192case TableIndex.AssemblyOS: 193case TableIndex.AssemblyProcessor: 194case TableIndex.AssemblyRefOS: 195case TableIndex.AssemblyRefProcessor: 196case TableIndex.EventPtr: 197case TableIndex.FieldPtr: 198case TableIndex.MethodPtr: 199case TableIndex.ParamPtr: 200case TableIndex.PropertyPtr: 223public int GetRowCount(TableIndex table) 227case TableIndex.Assembly : return _assemblyRow.HasValue ? 1 : 0; 228case TableIndex.AssemblyRef : return _assemblyRefTable.Count; 229case TableIndex.ClassLayout : return _classLayoutTable.Count; 230case TableIndex.Constant : return _constantTable.Count; 231case TableIndex.CustomAttribute : return _customAttributeTable.Count; 232case TableIndex.DeclSecurity : return _declSecurityTable.Count; 233case TableIndex.EncLog : return _encLogTable.Count; 234case TableIndex.EncMap : return _encMapTable.Count; 235case TableIndex.EventMap : return _eventMapTable.Count; 236case TableIndex.Event : return _eventTable.Count; 237case TableIndex.ExportedType : return _exportedTypeTable.Count; 238case TableIndex.FieldLayout : return _fieldLayoutTable.Count; 239case TableIndex.FieldMarshal : return _fieldMarshalTable.Count; 240case TableIndex.FieldRva : return _fieldRvaTable.Count; 241case TableIndex.Field : return _fieldTable.Count; 242case TableIndex.File : return _fileTable.Count; 243case TableIndex.GenericParamConstraint : return _genericParamConstraintTable.Count; 244case TableIndex.GenericParam : return _genericParamTable.Count; 245case TableIndex.ImplMap : return _implMapTable.Count; 246case TableIndex.InterfaceImpl : return _interfaceImplTable.Count; 247case TableIndex.ManifestResource : return _manifestResourceTable.Count; 248case TableIndex.MemberRef : return _memberRefTable.Count; 249case TableIndex.MethodImpl : return _methodImplTable.Count; 250case TableIndex.MethodSemantics : return _methodSemanticsTable.Count; 251case TableIndex.MethodSpec : return _methodSpecTable.Count; 252case TableIndex.MethodDef : return _methodDefTable.Count; 253case TableIndex.ModuleRef : return _moduleRefTable.Count; 254case TableIndex.Module : return _moduleRow.HasValue ? 1 : 0; 255case TableIndex.NestedClass : return _nestedClassTable.Count; 256case TableIndex.Param : return _paramTable.Count; 257case TableIndex.PropertyMap : return _propertyMapTable.Count; 258case TableIndex.Property : return _propertyTable.Count; 259case TableIndex.StandAloneSig : return _standAloneSigTable.Count; 260case TableIndex.TypeDef : return _typeDefTable.Count; 261case TableIndex.TypeRef : return _typeRefTable.Count; 262case TableIndex.TypeSpec : return _typeSpecTable.Count; 263case TableIndex.Document : return _documentTable.Count; 264case TableIndex.MethodDebugInformation : return _methodDebugInformationTable.Count; 265case TableIndex.LocalScope : return _localScopeTable.Count; 266case TableIndex.LocalVariable : return _localVariableTable.Count; 267case TableIndex.LocalConstant : return _localConstantTable.Count; 268case TableIndex.StateMachineMethod : return _stateMachineMethodTable.Count; 269case TableIndex.ImportScope : return _importScopeTable.Count; 270case TableIndex.CustomDebugInformation : return _customDebugInformationTable.Count; 272case TableIndex.AssemblyOS: 273case TableIndex.AssemblyProcessor: 274case TableIndex.AssemblyRefOS: 275case TableIndex.AssemblyRefProcessor: 276case TableIndex.EventPtr: 277case TableIndex.FieldPtr: 278case TableIndex.MethodPtr: 279case TableIndex.ParamPtr: 280case TableIndex.PropertyPtr: 299rowCounts[(int)TableIndex.Assembly] = _assemblyRow.HasValue ? 1 : 0; 300rowCounts[(int)TableIndex.AssemblyRef] = _assemblyRefTable.Count; 301rowCounts[(int)TableIndex.ClassLayout] = _classLayoutTable.Count; 302rowCounts[(int)TableIndex.Constant] = _constantTable.Count; 303rowCounts[(int)TableIndex.CustomAttribute] = _customAttributeTable.Count; 304rowCounts[(int)TableIndex.DeclSecurity] = _declSecurityTable.Count; 305rowCounts[(int)TableIndex.EncLog] = _encLogTable.Count; 306rowCounts[(int)TableIndex.EncMap] = _encMapTable.Count; 307rowCounts[(int)TableIndex.EventMap] = _eventMapTable.Count; 308rowCounts[(int)TableIndex.Event] = _eventTable.Count; 309rowCounts[(int)TableIndex.ExportedType] = _exportedTypeTable.Count; 310rowCounts[(int)TableIndex.FieldLayout] = _fieldLayoutTable.Count; 311rowCounts[(int)TableIndex.FieldMarshal] = _fieldMarshalTable.Count; 312rowCounts[(int)TableIndex.FieldRva] = _fieldRvaTable.Count; 313rowCounts[(int)TableIndex.Field] = _fieldTable.Count; 314rowCounts[(int)TableIndex.File] = _fileTable.Count; 315rowCounts[(int)TableIndex.GenericParamConstraint] = _genericParamConstraintTable.Count; 316rowCounts[(int)TableIndex.GenericParam] = _genericParamTable.Count; 317rowCounts[(int)TableIndex.ImplMap] = _implMapTable.Count; 318rowCounts[(int)TableIndex.InterfaceImpl] = _interfaceImplTable.Count; 319rowCounts[(int)TableIndex.ManifestResource] = _manifestResourceTable.Count; 320rowCounts[(int)TableIndex.MemberRef] = _memberRefTable.Count; 321rowCounts[(int)TableIndex.MethodImpl] = _methodImplTable.Count; 322rowCounts[(int)TableIndex.MethodSemantics] = _methodSemanticsTable.Count; 323rowCounts[(int)TableIndex.MethodSpec] = _methodSpecTable.Count; 324rowCounts[(int)TableIndex.MethodDef] = _methodDefTable.Count; 325rowCounts[(int)TableIndex.ModuleRef] = _moduleRefTable.Count; 326rowCounts[(int)TableIndex.Module] = _moduleRow.HasValue ? 1 : 0; 327rowCounts[(int)TableIndex.NestedClass] = _nestedClassTable.Count; 328rowCounts[(int)TableIndex.Param] = _paramTable.Count; 329rowCounts[(int)TableIndex.PropertyMap] = _propertyMapTable.Count; 330rowCounts[(int)TableIndex.Property] = _propertyTable.Count; 331rowCounts[(int)TableIndex.StandAloneSig] = _standAloneSigTable.Count; 332rowCounts[(int)TableIndex.TypeDef] = _typeDefTable.Count; 333rowCounts[(int)TableIndex.TypeRef] = _typeRefTable.Count; 334rowCounts[(int)TableIndex.TypeSpec] = _typeSpecTable.Count; 336rowCounts[(int)TableIndex.Document] = _documentTable.Count; 337rowCounts[(int)TableIndex.MethodDebugInformation] = _methodDebugInformationTable.Count; 338rowCounts[(int)TableIndex.LocalScope] = _localScopeTable.Count; 339rowCounts[(int)TableIndex.LocalVariable] = _localVariableTable.Count; 340rowCounts[(int)TableIndex.LocalConstant] = _localConstantTable.Count; 341rowCounts[(int)TableIndex.StateMachineMethod] = _stateMachineMethodTable.Count; 342rowCounts[(int)TableIndex.ImportScope] = _importScopeTable.Count; 343rowCounts[(int)TableIndex.CustomDebugInformation] = _customDebugInformationTable.Count; 1476Throw.InvalidOperation_TableNotSorted(TableIndex.ClassLayout); 1487Throw.InvalidOperation_TableNotSorted(TableIndex.FieldLayout); 1499Throw.InvalidOperation_TableNotSorted(TableIndex.FieldRva); 1526Throw.InvalidOperation_TableNotSorted(TableIndex.GenericParam); 1536Throw.InvalidOperation_TableNotSorted(TableIndex.GenericParamConstraint); 1547Throw.InvalidOperation_TableNotSorted(TableIndex.ImplMap); 1558Throw.InvalidOperation_TableNotSorted(TableIndex.InterfaceImpl); 1569Throw.InvalidOperation_TableNotSorted(TableIndex.MethodImpl); 1580Throw.InvalidOperation_TableNotSorted(TableIndex.NestedClass); 1617Throw.InvalidOperation_TableNotSorted(TableIndex.LocalScope); 1627Throw.InvalidOperation_TableNotSorted(TableIndex.StateMachineMethod); 1647if (metadataSizes.IsPresent(TableIndex.Module)) 1652if (metadataSizes.IsPresent(TableIndex.TypeRef)) 1657if (metadataSizes.IsPresent(TableIndex.TypeDef)) 1662if (metadataSizes.IsPresent(TableIndex.Field)) 1667if (metadataSizes.IsPresent(TableIndex.MethodDef)) 1672if (metadataSizes.IsPresent(TableIndex.Param)) 1677if (metadataSizes.IsPresent(TableIndex.InterfaceImpl)) 1682if (metadataSizes.IsPresent(TableIndex.MemberRef)) 1687if (metadataSizes.IsPresent(TableIndex.Constant)) 1692if (metadataSizes.IsPresent(TableIndex.CustomAttribute)) 1697if (metadataSizes.IsPresent(TableIndex.FieldMarshal)) 1702if (metadataSizes.IsPresent(TableIndex.DeclSecurity)) 1707if (metadataSizes.IsPresent(TableIndex.ClassLayout)) 1712if (metadataSizes.IsPresent(TableIndex.FieldLayout)) 1717if (metadataSizes.IsPresent(TableIndex.StandAloneSig)) 1722if (metadataSizes.IsPresent(TableIndex.EventMap)) 1727if (metadataSizes.IsPresent(TableIndex.Event)) 1732if (metadataSizes.IsPresent(TableIndex.PropertyMap)) 1737if (metadataSizes.IsPresent(TableIndex.Property)) 1742if (metadataSizes.IsPresent(TableIndex.MethodSemantics)) 1747if (metadataSizes.IsPresent(TableIndex.MethodImpl)) 1752if (metadataSizes.IsPresent(TableIndex.ModuleRef)) 1757if (metadataSizes.IsPresent(TableIndex.TypeSpec)) 1762if (metadataSizes.IsPresent(TableIndex.ImplMap)) 1767if (metadataSizes.IsPresent(TableIndex.FieldRva)) 1772if (metadataSizes.IsPresent(TableIndex.EncLog)) 1777if (metadataSizes.IsPresent(TableIndex.EncMap)) 1782if (metadataSizes.IsPresent(TableIndex.Assembly)) 1787if (metadataSizes.IsPresent(TableIndex.AssemblyRef)) 1792if (metadataSizes.IsPresent(TableIndex.File)) 1797if (metadataSizes.IsPresent(TableIndex.ExportedType)) 1802if (metadataSizes.IsPresent(TableIndex.ManifestResource)) 1807if (metadataSizes.IsPresent(TableIndex.NestedClass)) 1812if (metadataSizes.IsPresent(TableIndex.GenericParam)) 1817if (metadataSizes.IsPresent(TableIndex.MethodSpec)) 1822if (metadataSizes.IsPresent(TableIndex.GenericParamConstraint)) 1828if (metadataSizes.IsPresent(TableIndex.Document)) 1833if (metadataSizes.IsPresent(TableIndex.MethodDebugInformation)) 1838if (metadataSizes.IsPresent(TableIndex.LocalScope)) 1843if (metadataSizes.IsPresent(TableIndex.LocalVariable)) 1848if (metadataSizes.IsPresent(TableIndex.LocalConstant)) 1853if (metadataSizes.IsPresent(TableIndex.ImportScope)) 1858if (metadataSizes.IsPresent(TableIndex.StateMachineMethod)) 1863if (metadataSizes.IsPresent(TableIndex.CustomDebugInformation)) 1902metadataSizes.IsEncDelta ? MetadataSizes.SortedTypeSystemTables & ~(1UL << (int)TableIndex.CustomAttribute) :
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (110)
20public static int GetTableRowCount(this MetadataReader reader, TableIndex tableIndex) 40public static int GetTableRowSize(this MetadataReader reader, TableIndex tableIndex) 49TableIndex.Module => reader.ModuleTable.RowSize, 50TableIndex.TypeRef => reader.TypeRefTable.RowSize, 51TableIndex.TypeDef => reader.TypeDefTable.RowSize, 52TableIndex.FieldPtr => reader.FieldPtrTable.RowSize, 53TableIndex.Field => reader.FieldTable.RowSize, 54TableIndex.MethodPtr => reader.MethodPtrTable.RowSize, 55TableIndex.MethodDef => reader.MethodDefTable.RowSize, 56TableIndex.ParamPtr => reader.ParamPtrTable.RowSize, 57TableIndex.Param => reader.ParamTable.RowSize, 58TableIndex.InterfaceImpl => reader.InterfaceImplTable.RowSize, 59TableIndex.MemberRef => reader.MemberRefTable.RowSize, 60TableIndex.Constant => reader.ConstantTable.RowSize, 61TableIndex.CustomAttribute => reader.CustomAttributeTable.RowSize, 62TableIndex.FieldMarshal => reader.FieldMarshalTable.RowSize, 63TableIndex.DeclSecurity => reader.DeclSecurityTable.RowSize, 64TableIndex.ClassLayout => reader.ClassLayoutTable.RowSize, 65TableIndex.FieldLayout => reader.FieldLayoutTable.RowSize, 66TableIndex.StandAloneSig => reader.StandAloneSigTable.RowSize, 67TableIndex.EventMap => reader.EventMapTable.RowSize, 68TableIndex.EventPtr => reader.EventPtrTable.RowSize, 69TableIndex.Event => reader.EventTable.RowSize, 70TableIndex.PropertyMap => reader.PropertyMapTable.RowSize, 71TableIndex.PropertyPtr => reader.PropertyPtrTable.RowSize, 72TableIndex.Property => reader.PropertyTable.RowSize, 73TableIndex.MethodSemantics => reader.MethodSemanticsTable.RowSize, 74TableIndex.MethodImpl => reader.MethodImplTable.RowSize, 75TableIndex.ModuleRef => reader.ModuleRefTable.RowSize, 76TableIndex.TypeSpec => reader.TypeSpecTable.RowSize, 77TableIndex.ImplMap => reader.ImplMapTable.RowSize, 78TableIndex.FieldRva => reader.FieldRvaTable.RowSize, 79TableIndex.EncLog => reader.EncLogTable.RowSize, 80TableIndex.EncMap => reader.EncMapTable.RowSize, 81TableIndex.Assembly => reader.AssemblyTable.RowSize, 82TableIndex.AssemblyProcessor => reader.AssemblyProcessorTable.RowSize, 83TableIndex.AssemblyOS => reader.AssemblyOSTable.RowSize, 84TableIndex.AssemblyRef => reader.AssemblyRefTable.RowSize, 85TableIndex.AssemblyRefProcessor => reader.AssemblyRefProcessorTable.RowSize, 86TableIndex.AssemblyRefOS => reader.AssemblyRefOSTable.RowSize, 87TableIndex.File => reader.FileTable.RowSize, 88TableIndex.ExportedType => reader.ExportedTypeTable.RowSize, 89TableIndex.ManifestResource => reader.ManifestResourceTable.RowSize, 90TableIndex.NestedClass => reader.NestedClassTable.RowSize, 91TableIndex.GenericParam => reader.GenericParamTable.RowSize, 92TableIndex.MethodSpec => reader.MethodSpecTable.RowSize, 93TableIndex.GenericParamConstraint => reader.GenericParamConstraintTable.RowSize, 96TableIndex.Document => reader.DocumentTable.RowSize, 97TableIndex.MethodDebugInformation => reader.MethodDebugInformationTable.RowSize, 98TableIndex.LocalScope => reader.LocalScopeTable.RowSize, 99TableIndex.LocalVariable => reader.LocalVariableTable.RowSize, 100TableIndex.LocalConstant => reader.LocalConstantTable.RowSize, 101TableIndex.ImportScope => reader.ImportScopeTable.RowSize, 102TableIndex.StateMachineMethod => reader.StateMachineMethodTable.RowSize, 103TableIndex.CustomDebugInformation => reader.CustomDebugInformationTable.RowSize, 114public static unsafe int GetTableMetadataOffset(this MetadataReader reader, TableIndex tableIndex) 124private static MemoryBlock GetTableMetadataBlock(this MetadataReader reader, TableIndex tableIndex) 130TableIndex.Module => reader.ModuleTable.Block, 131TableIndex.TypeRef => reader.TypeRefTable.Block, 132TableIndex.TypeDef => reader.TypeDefTable.Block, 133TableIndex.FieldPtr => reader.FieldPtrTable.Block, 134TableIndex.Field => reader.FieldTable.Block, 135TableIndex.MethodPtr => reader.MethodPtrTable.Block, 136TableIndex.MethodDef => reader.MethodDefTable.Block, 137TableIndex.ParamPtr => reader.ParamPtrTable.Block, 138TableIndex.Param => reader.ParamTable.Block, 139TableIndex.InterfaceImpl => reader.InterfaceImplTable.Block, 140TableIndex.MemberRef => reader.MemberRefTable.Block, 141TableIndex.Constant => reader.ConstantTable.Block, 142TableIndex.CustomAttribute => reader.CustomAttributeTable.Block, 143TableIndex.FieldMarshal => reader.FieldMarshalTable.Block, 144TableIndex.DeclSecurity => reader.DeclSecurityTable.Block, 145TableIndex.ClassLayout => reader.ClassLayoutTable.Block, 146TableIndex.FieldLayout => reader.FieldLayoutTable.Block, 147TableIndex.StandAloneSig => reader.StandAloneSigTable.Block, 148TableIndex.EventMap => reader.EventMapTable.Block, 149TableIndex.EventPtr => reader.EventPtrTable.Block, 150TableIndex.Event => reader.EventTable.Block, 151TableIndex.PropertyMap => reader.PropertyMapTable.Block, 152TableIndex.PropertyPtr => reader.PropertyPtrTable.Block, 153TableIndex.Property => reader.PropertyTable.Block, 154TableIndex.MethodSemantics => reader.MethodSemanticsTable.Block, 155TableIndex.MethodImpl => reader.MethodImplTable.Block, 156TableIndex.ModuleRef => reader.ModuleRefTable.Block, 157TableIndex.TypeSpec => reader.TypeSpecTable.Block, 158TableIndex.ImplMap => reader.ImplMapTable.Block, 159TableIndex.FieldRva => reader.FieldRvaTable.Block, 160TableIndex.EncLog => reader.EncLogTable.Block, 161TableIndex.EncMap => reader.EncMapTable.Block, 162TableIndex.Assembly => reader.AssemblyTable.Block, 163TableIndex.AssemblyProcessor => reader.AssemblyProcessorTable.Block, 164TableIndex.AssemblyOS => reader.AssemblyOSTable.Block, 165TableIndex.AssemblyRef => reader.AssemblyRefTable.Block, 166TableIndex.AssemblyRefProcessor => reader.AssemblyRefProcessorTable.Block, 167TableIndex.AssemblyRefOS => reader.AssemblyRefOSTable.Block, 168TableIndex.File => reader.FileTable.Block, 169TableIndex.ExportedType => reader.ExportedTypeTable.Block, 170TableIndex.ManifestResource => reader.ManifestResourceTable.Block, 171TableIndex.NestedClass => reader.NestedClassTable.Block, 172TableIndex.GenericParam => reader.GenericParamTable.Block, 173TableIndex.MethodSpec => reader.MethodSpecTable.Block, 174TableIndex.GenericParamConstraint => reader.GenericParamConstraintTable.Block, 177TableIndex.Document => reader.DocumentTable.Block, 178TableIndex.MethodDebugInformation => reader.MethodDebugInformationTable.Block, 179TableIndex.LocalScope => reader.LocalScopeTable.Block, 180TableIndex.LocalVariable => reader.LocalVariableTable.Block, 181TableIndex.LocalConstant => reader.LocalConstantTable.Block, 182TableIndex.ImportScope => reader.ImportScopeTable.Block, 183TableIndex.StateMachineMethod => reader.StateMachineMethodTable.Block, 184TableIndex.CustomDebugInformation => reader.CustomDebugInformationTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (170)
231UL << (int)TableIndex.InterfaceImpl | 241UL << (int)TableIndex.Constant | 251UL << (int)TableIndex.CustomAttribute | 261UL << (int)TableIndex.FieldMarshal | 271UL << (int)TableIndex.DeclSecurity | 281UL << (int)TableIndex.ClassLayout | 291UL << (int)TableIndex.FieldLayout | 301UL << (int)TableIndex.MethodSemantics | 311UL << (int)TableIndex.MethodImpl | 321UL << (int)TableIndex.ImplMap | 331UL << (int)TableIndex.FieldRva | 341UL << (int)TableIndex.NestedClass | 351UL << (int)TableIndex.GenericParam | 361UL << (int)TableIndex.GenericParamConstraint; 391UL << (int)TableIndex.LocalScope | 401UL << (int)TableIndex.StateMachineMethod | 411UL << (int)TableIndex.CustomDebugInformation; 144bool isEncDelta = IsPresent(TableIndex.EncLog) || IsPresent(TableIndex.EncMap); 157CustomAttributeTypeCodedIndexIsSmall = IsReferenceSmall(3, TableIndex.MethodDef, TableIndex.MemberRef); 158DeclSecurityCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.MethodDef, TableIndex.TypeDef); 159EventDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.Event); 160FieldDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.Field); 161GenericParamReferenceIsSmall = IsReferenceSmall(0, TableIndex.GenericParam); 162HasConstantCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.Field, TableIndex.Param, TableIndex.Property); 165TableIndex.MethodDef, 166TableIndex.Field, 167TableIndex.TypeRef, 168TableIndex.TypeDef, 169TableIndex.Param, 170TableIndex.InterfaceImpl, 171TableIndex.MemberRef, 172TableIndex.Module, 173TableIndex.DeclSecurity, 174TableIndex.Property, 175TableIndex.Event, 176TableIndex.StandAloneSig, 177TableIndex.ModuleRef, 178TableIndex.TypeSpec, 179TableIndex.Assembly, 180TableIndex.AssemblyRef, 181TableIndex.File, 182TableIndex.ExportedType, 183TableIndex.ManifestResource, 184TableIndex.GenericParam, 185TableIndex.GenericParamConstraint, 186TableIndex.MethodSpec); 188HasFieldMarshalCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.Field, TableIndex.Param); 189HasSemanticsCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.Event, TableIndex.Property); 190ImplementationCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.File, TableIndex.AssemblyRef, TableIndex.ExportedType); 191MemberForwardedCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.Field, TableIndex.MethodDef); 192MemberRefParentCodedIndexIsSmall = IsReferenceSmall(3, TableIndex.TypeDef, TableIndex.TypeRef, TableIndex.ModuleRef, TableIndex.MethodDef, TableIndex.TypeSpec); 193MethodDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.MethodDef); 194MethodDefOrRefCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.MethodDef, TableIndex.MemberRef); 195ModuleRefReferenceIsSmall = IsReferenceSmall(0, TableIndex.ModuleRef); 196ParameterReferenceIsSmall = IsReferenceSmall(0, TableIndex.Param); 197PropertyDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.Property); 198ResolutionScopeCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.Module, TableIndex.ModuleRef, TableIndex.AssemblyRef, TableIndex.TypeRef); 199TypeDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.TypeDef); 200TypeDefOrRefCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.TypeDef, TableIndex.TypeRef, TableIndex.TypeSpec); 201TypeOrMethodDefCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.TypeDef, TableIndex.MethodDef); 203DocumentReferenceIsSmall = IsReferenceSmall(0, TableIndex.Document); 204LocalVariableReferenceIsSmall = IsReferenceSmall(0, TableIndex.LocalVariable); 205LocalConstantReferenceIsSmall = IsReferenceSmall(0, TableIndex.LocalConstant); 206ImportScopeReferenceIsSmall = IsReferenceSmall(0, TableIndex.ImportScope); 209TableIndex.MethodDef, 210TableIndex.Field, 211TableIndex.TypeRef, 212TableIndex.TypeDef, 213TableIndex.Param, 214TableIndex.InterfaceImpl, 215TableIndex.MemberRef, 216TableIndex.Module, 217TableIndex.DeclSecurity, 218TableIndex.Property, 219TableIndex.Event, 220TableIndex.StandAloneSig, 221TableIndex.ModuleRef, 222TableIndex.TypeSpec, 223TableIndex.Assembly, 224TableIndex.AssemblyRef, 225TableIndex.File, 226TableIndex.ExportedType, 227TableIndex.ManifestResource, 228TableIndex.GenericParam, 229TableIndex.GenericParamConstraint, 230TableIndex.MethodSpec, 231TableIndex.Document, 232TableIndex.LocalScope, 233TableIndex.LocalVariable, 234TableIndex.LocalConstant, 235TableIndex.ImportScope); 272size += GetTableSize(TableIndex.Module, 2 + 3 * guidReferenceSize + stringReferenceSize); 273size += GetTableSize(TableIndex.TypeRef, resolutionScopeCodedIndexSize + stringReferenceSize + stringReferenceSize); 274size += GetTableSize(TableIndex.TypeDef, 4 + stringReferenceSize + stringReferenceSize + typeDefOrRefCodedIndexSize + fieldDefReferenceSize + methodDefReferenceSize); 275Debug.Assert(rowCounts[(int)TableIndex.FieldPtr] == 0); 276size += GetTableSize(TableIndex.Field, 2 + stringReferenceSize + blobReferenceSize); 277Debug.Assert(rowCounts[(int)TableIndex.MethodPtr] == 0); 278size += GetTableSize(TableIndex.MethodDef, 8 + stringReferenceSize + blobReferenceSize + parameterReferenceSize); 279Debug.Assert(rowCounts[(int)TableIndex.ParamPtr] == 0); 280size += GetTableSize(TableIndex.Param, 4 + stringReferenceSize); 281size += GetTableSize(TableIndex.InterfaceImpl, typeDefReferenceSize + typeDefOrRefCodedIndexSize); 282size += GetTableSize(TableIndex.MemberRef, memberRefParentCodedIndexSize + stringReferenceSize + blobReferenceSize); 283size += GetTableSize(TableIndex.Constant, 2 + hasConstantCodedIndexSize + blobReferenceSize); 284size += GetTableSize(TableIndex.CustomAttribute, hasCustomAttributeCodedIndexSize + customAttributeTypeCodedIndexSize + blobReferenceSize); 285size += GetTableSize(TableIndex.FieldMarshal, hasFieldMarshalCodedIndexSize + blobReferenceSize); 286size += GetTableSize(TableIndex.DeclSecurity, 2 + declSecurityCodedIndexSize + blobReferenceSize); 287size += GetTableSize(TableIndex.ClassLayout, 6 + typeDefReferenceSize); 288size += GetTableSize(TableIndex.FieldLayout, 4 + fieldDefReferenceSize); 289size += GetTableSize(TableIndex.StandAloneSig, blobReferenceSize); 290size += GetTableSize(TableIndex.EventMap, typeDefReferenceSize + eventDefReferenceSize); 291Debug.Assert(rowCounts[(int)TableIndex.EventPtr] == 0); 292size += GetTableSize(TableIndex.Event, 2 + stringReferenceSize + typeDefOrRefCodedIndexSize); 293size += GetTableSize(TableIndex.PropertyMap, typeDefReferenceSize + propertyDefReferenceSize); 294Debug.Assert(rowCounts[(int)TableIndex.PropertyPtr] == 0); 295size += GetTableSize(TableIndex.Property, 2 + stringReferenceSize + blobReferenceSize); 296size += GetTableSize(TableIndex.MethodSemantics, 2 + methodDefReferenceSize + hasSemanticsCodedIndexSize); 297size += GetTableSize(TableIndex.MethodImpl, typeDefReferenceSize + methodDefOrRefCodedIndexSize + methodDefOrRefCodedIndexSize); 298size += GetTableSize(TableIndex.ModuleRef, stringReferenceSize); 299size += GetTableSize(TableIndex.TypeSpec, blobReferenceSize); 300size += GetTableSize(TableIndex.ImplMap, 2 + memberForwardedCodedIndexSize + stringReferenceSize + moduleRefReferenceSize); 301size += GetTableSize(TableIndex.FieldRva, 4 + fieldDefReferenceSize); 302size += GetTableSize(TableIndex.EncLog, 8); 303size += GetTableSize(TableIndex.EncMap, 4); 304size += GetTableSize(TableIndex.Assembly, 16 + blobReferenceSize + stringReferenceSize + stringReferenceSize); 305Debug.Assert(rowCounts[(int)TableIndex.AssemblyProcessor] == 0); 306Debug.Assert(rowCounts[(int)TableIndex.AssemblyOS] == 0); 307size += GetTableSize(TableIndex.AssemblyRef, 12 + blobReferenceSize + stringReferenceSize + stringReferenceSize + blobReferenceSize); 308Debug.Assert(rowCounts[(int)TableIndex.AssemblyRefProcessor] == 0); 309Debug.Assert(rowCounts[(int)TableIndex.AssemblyRefOS] == 0); 310size += GetTableSize(TableIndex.File, 4 + stringReferenceSize + blobReferenceSize); 311size += GetTableSize(TableIndex.ExportedType, 8 + stringReferenceSize + stringReferenceSize + implementationCodedIndexSize); 312size += GetTableSize(TableIndex.ManifestResource, 8 + stringReferenceSize + implementationCodedIndexSize); 313size += GetTableSize(TableIndex.NestedClass, typeDefReferenceSize + typeDefReferenceSize); 314size += GetTableSize(TableIndex.GenericParam, 4 + typeOrMethodDefCodedIndexSize + stringReferenceSize); 315size += GetTableSize(TableIndex.MethodSpec, methodDefOrRefCodedIndexSize + blobReferenceSize); 316size += GetTableSize(TableIndex.GenericParamConstraint, genericParamReferenceSize + typeDefOrRefCodedIndexSize); 318size += GetTableSize(TableIndex.Document, blobReferenceSize + guidReferenceSize + blobReferenceSize + guidReferenceSize); 319size += GetTableSize(TableIndex.MethodDebugInformation, documentReferenceSize + blobReferenceSize); 320size += GetTableSize(TableIndex.LocalScope, methodDefReferenceSize + importScopeReferenceSize + localVariableReferenceSize + localConstantReferenceSize + 4 + 4); 321size += GetTableSize(TableIndex.LocalVariable, 2 + 2 + stringReferenceSize); 322size += GetTableSize(TableIndex.LocalConstant, stringReferenceSize + blobReferenceSize); 323size += GetTableSize(TableIndex.ImportScope, importScopeReferenceSize + blobReferenceSize); 324size += GetTableSize(TableIndex.StateMachineMethod, methodDefReferenceSize + methodDefReferenceSize); 325size += GetTableSize(TableIndex.CustomDebugInformation, hasCustomDebugInformationCodedIndexSize + guidReferenceSize + blobReferenceSize); 345internal bool IsPresent(TableIndex table) => (PresentTablesMask & (1UL << (int)table)) != 0; 463private int GetTableSize(TableIndex index, int rowSize) 468private bool IsReferenceSmall(int tagBitSize, params TableIndex[] tables) 474private bool ReferenceFits(int bitCount, TableIndex[] tables) 477foreach (TableIndex table in tables)
System\Reflection\Metadata\Ecma335\MetadataTokens.cs (5)
228/// Gets the <see cref="TableIndex"/> of the table corresponding to the specified <see cref="HandleKind"/>. 233public static bool TryGetTableIndex(HandleKind type, out TableIndex index) 239index = (TableIndex)type; 318public static EntityHandle EntityHandle(TableIndex tableIndex, int rowNumber) 328public static EntityHandle Handle(TableIndex tableIndex, int rowNumber)
System\Reflection\Metadata\Ecma335\PortablePdbBuilder.cs (1)
34/// Each slot in the array corresponds to a table (<see cref="TableIndex"/>).
System\Reflection\Metadata\Internal\MetadataFlags.cs (86)
18Module = 1UL << TableIndex.Module, 19TypeRef = 1UL << TableIndex.TypeRef, 20TypeDef = 1UL << TableIndex.TypeDef, 21FieldPtr = 1UL << TableIndex.FieldPtr, 22Field = 1UL << TableIndex.Field, 23MethodPtr = 1UL << TableIndex.MethodPtr, 24MethodDef = 1UL << TableIndex.MethodDef, 25ParamPtr = 1UL << TableIndex.ParamPtr, 26Param = 1UL << TableIndex.Param, 27InterfaceImpl = 1UL << TableIndex.InterfaceImpl, 28MemberRef = 1UL << TableIndex.MemberRef, 29Constant = 1UL << TableIndex.Constant, 30CustomAttribute = 1UL << TableIndex.CustomAttribute, 31FieldMarshal = 1UL << TableIndex.FieldMarshal, 32DeclSecurity = 1UL << TableIndex.DeclSecurity, 33ClassLayout = 1UL << TableIndex.ClassLayout, 34FieldLayout = 1UL << TableIndex.FieldLayout, 35StandAloneSig = 1UL << TableIndex.StandAloneSig, 36EventMap = 1UL << TableIndex.EventMap, 37EventPtr = 1UL << TableIndex.EventPtr, 38Event = 1UL << TableIndex.Event, 39PropertyMap = 1UL << TableIndex.PropertyMap, 40PropertyPtr = 1UL << TableIndex.PropertyPtr, 41Property = 1UL << TableIndex.Property, 42MethodSemantics = 1UL << TableIndex.MethodSemantics, 43MethodImpl = 1UL << TableIndex.MethodImpl, 44ModuleRef = 1UL << TableIndex.ModuleRef, 45TypeSpec = 1UL << TableIndex.TypeSpec, 46ImplMap = 1UL << TableIndex.ImplMap, 47FieldRva = 1UL << TableIndex.FieldRva, 48EnCLog = 1UL << TableIndex.EncLog, 49EnCMap = 1UL << TableIndex.EncMap, 50Assembly = 1UL << TableIndex.Assembly, 53AssemblyRef = 1UL << TableIndex.AssemblyRef, 56File = 1UL << TableIndex.File, 57ExportedType = 1UL << TableIndex.ExportedType, 58ManifestResource = 1UL << TableIndex.ManifestResource, 59NestedClass = 1UL << TableIndex.NestedClass, 60GenericParam = 1UL << TableIndex.GenericParam, 61MethodSpec = 1UL << TableIndex.MethodSpec, 62GenericParamConstraint = 1UL << TableIndex.GenericParamConstraint, 64Document = 1UL << TableIndex.Document, 65MethodDebugInformation = 1UL << TableIndex.MethodDebugInformation, 66LocalScope = 1UL << TableIndex.LocalScope, 67LocalVariable = 1UL << TableIndex.LocalVariable, 68LocalConstant = 1UL << TableIndex.LocalConstant, 69ImportScope = 1UL << TableIndex.ImportScope, 70StateMachineMethod = 1UL << TableIndex.StateMachineMethod, 71CustomDebugInformation = 1UL << TableIndex.CustomDebugInformation, 203internal const uint Module = (uint)TableIndex.Module; 204internal const uint TypeRef = (uint)TableIndex.TypeRef; 205internal const uint TypeDef = (uint)TableIndex.TypeDef; 206internal const uint FieldDef = (uint)TableIndex.Field; 207internal const uint MethodDef = (uint)TableIndex.MethodDef; 208internal const uint ParamDef = (uint)TableIndex.Param; 209internal const uint InterfaceImpl = (uint)TableIndex.InterfaceImpl; 210internal const uint MemberRef = (uint)TableIndex.MemberRef; 211internal const uint Constant = (uint)TableIndex.Constant; 212internal const uint CustomAttribute = (uint)TableIndex.CustomAttribute; 213internal const uint DeclSecurity = (uint)TableIndex.DeclSecurity; 214internal const uint Signature = (uint)TableIndex.StandAloneSig; 215internal const uint EventMap = (uint)TableIndex.EventMap; 216internal const uint Event = (uint)TableIndex.Event; 217internal const uint PropertyMap = (uint)TableIndex.PropertyMap; 218internal const uint Property = (uint)TableIndex.Property; 219internal const uint MethodSemantics = (uint)TableIndex.MethodSemantics; 220internal const uint MethodImpl = (uint)TableIndex.MethodImpl; 221internal const uint ModuleRef = (uint)TableIndex.ModuleRef; 222internal const uint TypeSpec = (uint)TableIndex.TypeSpec; 223internal const uint Assembly = (uint)TableIndex.Assembly; 224internal const uint AssemblyRef = (uint)TableIndex.AssemblyRef; 225internal const uint File = (uint)TableIndex.File; 226internal const uint ExportedType = (uint)TableIndex.ExportedType; 227internal const uint ManifestResource = (uint)TableIndex.ManifestResource; 228internal const uint NestedClass = (uint)TableIndex.NestedClass; 229internal const uint GenericParam = (uint)TableIndex.GenericParam; 230internal const uint MethodSpec = (uint)TableIndex.MethodSpec; 231internal const uint GenericParamConstraint = (uint)TableIndex.GenericParamConstraint; 234internal const uint Document = (uint)TableIndex.Document; 235internal const uint MethodDebugInformation = (uint)TableIndex.MethodDebugInformation; 236internal const uint LocalScope = (uint)TableIndex.LocalScope; 237internal const uint LocalVariable = (uint)TableIndex.LocalVariable; 238internal const uint LocalConstant = (uint)TableIndex.LocalConstant; 239internal const uint ImportScope = (uint)TableIndex.ImportScope; 240internal const uint AsyncMethod = (uint)TableIndex.StateMachineMethod; 241internal const uint CustomDebugInformation = (uint)TableIndex.CustomDebugInformation;
System\Reflection\Metadata\Internal\Tables.cs (13)
581Throw.TableNotSorted(TableIndex.InterfaceImpl); 708Throw.TableNotSorted(TableIndex.Constant); 889Throw.TableNotSorted(TableIndex.FieldMarshal); 955Throw.TableNotSorted(TableIndex.DeclSecurity); 1035Throw.TableNotSorted(TableIndex.ClassLayout); 1099Throw.TableNotSorted(TableIndex.FieldLayout); 1503Throw.TableNotSorted(TableIndex.MethodSemantics); 1600Throw.TableNotSorted(TableIndex.MethodImpl); 1749Throw.TableNotSorted(TableIndex.ImplMap); 1818Throw.TableNotSorted(TableIndex.FieldRva); 2386Throw.TableNotSorted(TableIndex.NestedClass); 2458Throw.TableNotSorted(TableIndex.GenericParam); 2599Throw.TableNotSorted(TableIndex.GenericParamConstraint);
System\Reflection\Metadata\MetadataReader.cs (91)
372/// A row count for each possible table. May be indexed by <see cref="TableIndex"/>. 563private int GetReferenceSize(int[] rowCounts, TableIndex index) 577int fieldRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.FieldPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Field); 578int methodRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.MethodPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.MethodDef); 579int paramRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.ParamPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Param); 580int eventRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.EventPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Event); 581int propertyRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.PropertyPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Property); 605this.ModuleTable = new ModuleTableReader(rowCounts[(int)TableIndex.Module], stringHeapRefSize, guidHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 608this.TypeRefTable = new TypeRefTableReader(rowCounts[(int)TableIndex.TypeRef], resolutionScopeRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 611this.TypeDefTable = new TypeDefTableReader(rowCounts[(int)TableIndex.TypeDef], fieldRefSizeSorted, methodRefSizeSorted, typeDefOrRefRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 614this.FieldPtrTable = new FieldPtrTableReader(rowCounts[(int)TableIndex.FieldPtr], GetReferenceSize(rowCounts, TableIndex.Field), metadataTablesMemoryBlock, totalRequiredSize); 617this.FieldTable = new FieldTableReader(rowCounts[(int)TableIndex.Field], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 620this.MethodPtrTable = new MethodPtrTableReader(rowCounts[(int)TableIndex.MethodPtr], GetReferenceSize(rowCounts, TableIndex.MethodDef), metadataTablesMemoryBlock, totalRequiredSize); 623this.MethodDefTable = new MethodTableReader(rowCounts[(int)TableIndex.MethodDef], paramRefSizeSorted, stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 626this.ParamPtrTable = new ParamPtrTableReader(rowCounts[(int)TableIndex.ParamPtr], GetReferenceSize(rowCounts, TableIndex.Param), metadataTablesMemoryBlock, totalRequiredSize); 629this.ParamTable = new ParamTableReader(rowCounts[(int)TableIndex.Param], stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 632this.InterfaceImplTable = new InterfaceImplTableReader(rowCounts[(int)TableIndex.InterfaceImpl], IsDeclaredSorted(TableMask.InterfaceImpl), GetReferenceSize(rowCounts, TableIndex.TypeDef), typeDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize); 635this.MemberRefTable = new MemberRefTableReader(rowCounts[(int)TableIndex.MemberRef], memberRefParentRefSize, stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 638this.ConstantTable = new ConstantTableReader(rowCounts[(int)TableIndex.Constant], IsDeclaredSorted(TableMask.Constant), hasConstantRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 641this.CustomAttributeTable = new CustomAttributeTableReader(rowCounts[(int)TableIndex.CustomAttribute], 650this.FieldMarshalTable = new FieldMarshalTableReader(rowCounts[(int)TableIndex.FieldMarshal], IsDeclaredSorted(TableMask.FieldMarshal), hasFieldMarshalRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 653this.DeclSecurityTable = new DeclSecurityTableReader(rowCounts[(int)TableIndex.DeclSecurity], IsDeclaredSorted(TableMask.DeclSecurity), hasDeclSecurityRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 656this.ClassLayoutTable = new ClassLayoutTableReader(rowCounts[(int)TableIndex.ClassLayout], IsDeclaredSorted(TableMask.ClassLayout), GetReferenceSize(rowCounts, TableIndex.TypeDef), metadataTablesMemoryBlock, totalRequiredSize); 659this.FieldLayoutTable = new FieldLayoutTableReader(rowCounts[(int)TableIndex.FieldLayout], IsDeclaredSorted(TableMask.FieldLayout), GetReferenceSize(rowCounts, TableIndex.Field), metadataTablesMemoryBlock, totalRequiredSize); 662this.StandAloneSigTable = new StandAloneSigTableReader(rowCounts[(int)TableIndex.StandAloneSig], blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 665this.EventMapTable = new EventMapTableReader(rowCounts[(int)TableIndex.EventMap], GetReferenceSize(rowCounts, TableIndex.TypeDef), eventRefSizeSorted, metadataTablesMemoryBlock, totalRequiredSize); 668this.EventPtrTable = new EventPtrTableReader(rowCounts[(int)TableIndex.EventPtr], GetReferenceSize(rowCounts, TableIndex.Event), metadataTablesMemoryBlock, totalRequiredSize); 671this.EventTable = new EventTableReader(rowCounts[(int)TableIndex.Event], typeDefOrRefRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 674this.PropertyMapTable = new PropertyMapTableReader(rowCounts[(int)TableIndex.PropertyMap], GetReferenceSize(rowCounts, TableIndex.TypeDef), propertyRefSizeSorted, metadataTablesMemoryBlock, totalRequiredSize); 677this.PropertyPtrTable = new PropertyPtrTableReader(rowCounts[(int)TableIndex.PropertyPtr], GetReferenceSize(rowCounts, TableIndex.Property), metadataTablesMemoryBlock, totalRequiredSize); 680this.PropertyTable = new PropertyTableReader(rowCounts[(int)TableIndex.Property], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 683this.MethodSemanticsTable = new MethodSemanticsTableReader(rowCounts[(int)TableIndex.MethodSemantics], IsDeclaredSorted(TableMask.MethodSemantics), GetReferenceSize(rowCounts, TableIndex.MethodDef), hasSemanticsRefSize, metadataTablesMemoryBlock, totalRequiredSize); 686this.MethodImplTable = new MethodImplTableReader(rowCounts[(int)TableIndex.MethodImpl], IsDeclaredSorted(TableMask.MethodImpl), GetReferenceSize(rowCounts, TableIndex.TypeDef), methodDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize); 689this.ModuleRefTable = new ModuleRefTableReader(rowCounts[(int)TableIndex.ModuleRef], stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 692this.TypeSpecTable = new TypeSpecTableReader(rowCounts[(int)TableIndex.TypeSpec], blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 695this.ImplMapTable = new ImplMapTableReader(rowCounts[(int)TableIndex.ImplMap], IsDeclaredSorted(TableMask.ImplMap), GetReferenceSize(rowCounts, TableIndex.ModuleRef), memberForwardedRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 698this.FieldRvaTable = new FieldRVATableReader(rowCounts[(int)TableIndex.FieldRva], IsDeclaredSorted(TableMask.FieldRva), GetReferenceSize(rowCounts, TableIndex.Field), metadataTablesMemoryBlock, totalRequiredSize); 701this.EncLogTable = new EnCLogTableReader(rowCounts[(int)TableIndex.EncLog], metadataTablesMemoryBlock, totalRequiredSize, _metadataStreamKind); 704this.EncMapTable = new EnCMapTableReader(rowCounts[(int)TableIndex.EncMap], metadataTablesMemoryBlock, totalRequiredSize); 707this.AssemblyTable = new AssemblyTableReader(rowCounts[(int)TableIndex.Assembly], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 710this.AssemblyProcessorTable = new AssemblyProcessorTableReader(rowCounts[(int)TableIndex.AssemblyProcessor], metadataTablesMemoryBlock, totalRequiredSize); 713this.AssemblyOSTable = new AssemblyOSTableReader(rowCounts[(int)TableIndex.AssemblyOS], metadataTablesMemoryBlock, totalRequiredSize); 716this.AssemblyRefTable = new AssemblyRefTableReader(rowCounts[(int)TableIndex.AssemblyRef], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize, _metadataKind); 719this.AssemblyRefProcessorTable = new AssemblyRefProcessorTableReader(rowCounts[(int)TableIndex.AssemblyRefProcessor], GetReferenceSize(rowCounts, TableIndex.AssemblyRef), metadataTablesMemoryBlock, totalRequiredSize); 722this.AssemblyRefOSTable = new AssemblyRefOSTableReader(rowCounts[(int)TableIndex.AssemblyRefOS], GetReferenceSize(rowCounts, TableIndex.AssemblyRef), metadataTablesMemoryBlock, totalRequiredSize); 725this.FileTable = new FileTableReader(rowCounts[(int)TableIndex.File], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 728this.ExportedTypeTable = new ExportedTypeTableReader(rowCounts[(int)TableIndex.ExportedType], implementationRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 731this.ManifestResourceTable = new ManifestResourceTableReader(rowCounts[(int)TableIndex.ManifestResource], implementationRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 734this.NestedClassTable = new NestedClassTableReader(rowCounts[(int)TableIndex.NestedClass], IsDeclaredSorted(TableMask.NestedClass), GetReferenceSize(rowCounts, TableIndex.TypeDef), metadataTablesMemoryBlock, totalRequiredSize); 737this.GenericParamTable = new GenericParamTableReader(rowCounts[(int)TableIndex.GenericParam], IsDeclaredSorted(TableMask.GenericParam), typeOrMethodDefRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 740this.MethodSpecTable = new MethodSpecTableReader(rowCounts[(int)TableIndex.MethodSpec], methodDefOrRefRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 743this.GenericParamConstraintTable = new GenericParamConstraintTableReader(rowCounts[(int)TableIndex.GenericParamConstraint], IsDeclaredSorted(TableMask.GenericParamConstraint), GetReferenceSize(rowCounts, TableIndex.GenericParam), typeDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize); 750var combinedRowCounts = (externalRowCountsOpt != null) ? CombineRowCounts(rowCounts, externalRowCountsOpt, firstLocalTableIndex: TableIndex.Document) : rowCounts; 752int methodRefSizeCombined = GetReferenceSize(combinedRowCounts, TableIndex.MethodDef); 755this.DocumentTable = new DocumentTableReader(rowCounts[(int)TableIndex.Document], guidHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 758this.MethodDebugInformationTable = new MethodDebugInformationTableReader(rowCounts[(int)TableIndex.MethodDebugInformation], GetReferenceSize(rowCounts, TableIndex.Document), blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 761this.LocalScopeTable = new LocalScopeTableReader(rowCounts[(int)TableIndex.LocalScope], IsDeclaredSorted(TableMask.LocalScope), methodRefSizeCombined, GetReferenceSize(rowCounts, TableIndex.ImportScope), GetReferenceSize(rowCounts, TableIndex.LocalVariable), GetReferenceSize(rowCounts, TableIndex.LocalConstant), metadataTablesMemoryBlock, totalRequiredSize); 764this.LocalVariableTable = new LocalVariableTableReader(rowCounts[(int)TableIndex.LocalVariable], stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 767this.LocalConstantTable = new LocalConstantTableReader(rowCounts[(int)TableIndex.LocalConstant], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 770this.ImportScopeTable = new ImportScopeTableReader(rowCounts[(int)TableIndex.ImportScope], GetReferenceSize(rowCounts, TableIndex.ImportScope), blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 773this.StateMachineMethodTable = new StateMachineMethodTableReader(rowCounts[(int)TableIndex.StateMachineMethod], IsDeclaredSorted(TableMask.StateMachineMethod), methodRefSizeCombined, metadataTablesMemoryBlock, totalRequiredSize); 776this.CustomDebugInformationTable = new CustomDebugInformationTableReader(rowCounts[(int)TableIndex.CustomDebugInformation], IsDeclaredSorted(TableMask.CustomDebugInformation), hasCustomDebugInformationRefSizeCombined, guidHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize); 785private static int[] CombineRowCounts(int[] local, int[] external, TableIndex firstLocalTableIndex)
System\Reflection\Metadata\PortablePdb\Tables.Debug.cs (3)
156Throw.TableNotSorted(TableIndex.LocalScope); 356Throw.TableNotSorted(TableIndex.StateMachineMethod); 465Throw.TableNotSorted(TableIndex.CustomDebugInformation);
System\Reflection\Throw.cs (2)
207internal static void TableNotSorted(TableIndex tableIndex) 213internal static void InvalidOperation_TableNotSorted(TableIndex tableIndex)
System.Reflection.MetadataLoadContext (5)
System\Reflection\TypeLoading\Modules\Ecma\EcmaModule.MetadataTables.cs (5)
20Interlocked.CompareExchange(ref _lazyTypeDefTable, CreateTable<EcmaDefinitionType>(TableIndex.TypeDef), null) ?? 44Interlocked.CompareExchange(ref _lazyTypeRefTable, CreateTable<RoDefinitionType>(TableIndex.TypeRef), null) ?? 55Interlocked.CompareExchange(ref _lazyGenericParamTable, CreateTable<EcmaGenericParameterType>(TableIndex.GenericParam), null) ?? 66Interlocked.CompareExchange(ref _lazyAssemblyRefTable, CreateTable<RoAssembly>(TableIndex.AssemblyRef), null) ?? 72private MetadataTable<T, EcmaModule> CreateTable<T>(TableIndex tableIndex) where T : class