System.Reflection.PortableExecutable.DirectoryEntry
namespace System.Reflection.PortableExecutable
{
public struct DirectoryEntry
{
public readonly int RelativeVirtualAddress;
public readonly int Size;
public DirectoryEntry(int relativeVirtualAddress, int size);
}
}