TUP.AsmResolver.NET.StringsHeap.Dispose C# (CSharp) Method

Dispose() public method

Frees all the streams used in this heap.
public Dispose ( ) : void
return void
        public override void Dispose()
        {
            ClearCache();
            base.Dispose();
        }

Usage Example

コード例 #1
0
 /// <summary>
 /// Frees all heaps and streams that are being used.
 /// </summary>
 public void Dispose()
 {
     if (blobheap != null)
     {
         blobheap.Dispose();
     }
     if (guidheap != null)
     {
         guidheap.Dispose();
     }
     if (stringsheap != null)
     {
         stringsheap.Dispose();
     }
     if (usheap != null)
     {
         usheap.Dispose();
     }
     if (tableheap != null)
     {
         tableheap.Dispose();
     }
 }
All Usage Examples Of TUP.AsmResolver.NET.StringsHeap::Dispose