1 write to LocalConstantTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
767this.LocalConstantTable = new LocalConstantTableReader(rowCounts[(int)TableIndex.LocalConstant], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
7 references to LocalConstantTable
System.Reflection.Metadata (7)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
100TableIndex.LocalConstant => reader.LocalConstantTable.RowSize, 181TableIndex.LocalConstant => reader.LocalConstantTable.Block,
System\Reflection\Metadata\MetadataReader.cs (2)
768totalRequiredSize += this.LocalConstantTable.Block.Length; 973lastConstantRowId = this.LocalConstantTable.NumberOfRows;
System\Reflection\Metadata\PortablePdb\HandleCollections.Debug.cs (1)
538_lastRowId = reader.LocalConstantTable.NumberOfRows;
System\Reflection\Metadata\PortablePdb\LocalConstant.cs (2)
32public StringHandle Name => _reader.LocalConstantTable.GetName(Handle); 37public BlobHandle Signature => _reader.LocalConstantTable.GetSignature(Handle);