public TableHeap(MetadataHeaps heaps, byte[] buffer) : base(buffer, 0x08) { MoveTo(START_POSITION); _heaps = heaps; _tables = GetMetadataTables(); _isLargeToken = Func.Memoize <CodedTokenType, bool>(type => CodedTokenSchema.IsLargeToken(type, this)); }
public TableHeap(MetadataHeaps heaps) : base(Empty <byte> .Array, 0x08) { _heaps = heaps; _tables = new IMetadataTable[TABLES_COUNT]; _isLargeToken = Func.Memoize <CodedTokenType, bool>(type => CodedTokenSchema.IsLargeToken(type, this)); }