1 write to MethodImplTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
686this.MethodImplTable = new MethodImplTableReader(rowCounts[(int)TableIndex.MethodImpl], IsDeclaredSorted(TableMask.MethodImpl), GetReferenceSize(rowCounts, TableIndex.TypeDef), methodDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize);
8 references to MethodImplTable
System.Reflection.Metadata (8)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
74TableIndex.MethodImpl => reader.MethodImplTable.RowSize, 155TableIndex.MethodImpl => reader.MethodImplTable.Block,
System\Reflection\Metadata\MetadataReader.cs (1)
687totalRequiredSize += this.MethodImplTable.Block.Length;
System\Reflection\Metadata\TypeSystem\HandleCollections.TypeSystem.cs (2)
947_lastRowId = reader.MethodImplTable.NumberOfRows; 951reader.MethodImplTable.GetMethodImplRange(containingType, out _firstRowId, out _lastRowId);
System\Reflection\Metadata\TypeSystem\MethodImplementation.cs (3)
33return _reader.MethodImplTable.GetClass(Handle); 41return _reader.MethodImplTable.GetMethodBody(Handle); 49return _reader.MethodImplTable.GetMethodDeclaration(Handle);