// dnlib: See LICENSE.txt for more info
namespace dnlib.DotNet.Writer {
///
/// .NET Heap interface
///
public interface IHeap : IChunk {
///
/// Gets the name of the heap
///
string Name { get; }
///
/// Checks whether the heap is empty
///
bool IsEmpty { get; }
///
/// Called when the heap should be set to read-only mode
///
void SetReadOnly();
}
}