A heap that holds all string values of all members in the tables heap.
Inheritance: TUP.AsmResolver.NET.Heap
Exemplo n.º 1
0
        public static StringsHeap FromStream(MetaDataStream stream)
        {
            StringsHeap heap = new StringsHeap(stream);

            heap.binaryreader = new BinaryReader(new MemoryStream(heap.Contents));
            return heap;
        }
Exemplo n.º 2
0
 public void ClearCache()
 {
     tableheap   = null;
     stringsheap = null;
     usheap      = null;
     blobheap    = null;
     guidheap    = null;
 }
Exemplo n.º 3
0
 public void LoadCache()
 {
     _tableheap   = TablesHeap;
     _stringsheap = StringsHeap;
     _usheap      = UserStringsHeap;
     _blobheap    = BlobHeap;
     _guidheap    = GuidHeap;
 }
Exemplo n.º 4
0
 public void ClearCache()
 {
     _tableheap   = null;
     _stringsheap = null;
     _usheap      = null;
     _blobheap    = null;
     _guidheap    = null;
 }
Exemplo n.º 5
0
 public void LoadCache()
 {
     _tableheap = TablesHeap;
     _stringsheap = StringsHeap;
     _usheap = UserStringsHeap;
     _blobheap = BlobHeap;
     _guidheap = GuidHeap;
 }
Exemplo n.º 6
0
 public void ClearCache()
 {
     _tableheap = null;
     _stringsheap = null;
     _usheap = null;
     _blobheap = null;
     _guidheap = null;
 }