System.Reflection.PortableExecutable.PEMemoryBlock
namespace System.Reflection.PortableExecutable
{
public struct PEMemoryBlock
{
public unsafe byte* Pointer { get; }
public int Length { get; }
public ImmutableArray<byte> GetContent();
}
}