A heap that holds all user specified strings in method bodies.
Inheritance: MetaDataStream
Exemple #1
0
 public void ClearCache()
 {
     tableheap   = null;
     stringsheap = null;
     usheap      = null;
     blobheap    = null;
     guidheap    = null;
 }
Exemple #2
0
 public void LoadCache()
 {
     _tableheap   = TablesHeap;
     _stringsheap = StringsHeap;
     _usheap      = UserStringsHeap;
     _blobheap    = BlobHeap;
     _guidheap    = GuidHeap;
 }
Exemple #3
0
 public void ClearCache()
 {
     _tableheap   = null;
     _stringsheap = null;
     _usheap      = null;
     _blobheap    = null;
     _guidheap    = null;
 }
 public static UserStringsHeap FromStream(MetaDataStream stream)
 {
     UserStringsHeap heap = new UserStringsHeap(stream);
     heap.binaryreader = new BinaryReader(new MemoryStream(heap.Contents));
     return heap;
 }
Exemple #5
0
 public void LoadCache()
 {
     _tableheap = TablesHeap;
     _stringsheap = StringsHeap;
     _usheap = UserStringsHeap;
     _blobheap = BlobHeap;
     _guidheap = GuidHeap;
 }
Exemple #6
0
 public void ClearCache()
 {
     _tableheap = null;
     _stringsheap = null;
     _usheap = null;
     _blobheap = null;
     _guidheap = null;
 }