namespace X86Disassembler.PE; /// /// Represents a data directory in the optional header /// public class DataDirectory { public uint VirtualAddress; // RVA of the table public uint Size; // Size of the table }