A heap that holds all user specified strings in method bodies.
Наследование: MetaDataStream
Пример #1
0
 public void ClearCache()
 {
     tableheap   = null;
     stringsheap = null;
     usheap      = null;
     blobheap    = null;
     guidheap    = null;
 }
Пример #2
0
 public void LoadCache()
 {
     _tableheap   = TablesHeap;
     _stringsheap = StringsHeap;
     _usheap      = UserStringsHeap;
     _blobheap    = BlobHeap;
     _guidheap    = GuidHeap;
 }
Пример #3
0
 public void ClearCache()
 {
     _tableheap   = null;
     _stringsheap = null;
     _usheap      = null;
     _blobheap    = null;
     _guidheap    = null;
 }
Пример #4
0
 public static UserStringsHeap FromStream(MetaDataStream stream)
 {
     UserStringsHeap heap = new UserStringsHeap(stream);
     heap.binaryreader = new BinaryReader(new MemoryStream(heap.Contents));
     return heap;
 }
Пример #5
0
 public void LoadCache()
 {
     _tableheap = TablesHeap;
     _stringsheap = StringsHeap;
     _usheap = UserStringsHeap;
     _blobheap = BlobHeap;
     _guidheap = GuidHeap;
 }
Пример #6
0
 public void ClearCache()
 {
     _tableheap = null;
     _stringsheap = null;
     _usheap = null;
     _blobheap = null;
     _guidheap = null;
 }