コード例 #1
0
 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));
 }
コード例 #2
0
 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));
 }