Files
parkan-playground/X86Disassembler/PE/DataDirectory.cs
T

10 lines
254 B
C#
Raw Normal View History

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