namespace BurnOutSharp.Models.PortableExecutable { /// /// The resource directory string area consists of Unicode strings, which /// are word-aligned. These strings are stored together after the last /// Resource Directory entry and before the first Resource Data entry. /// This minimizes the impact of these variable-length strings on the /// alignment of the fixed-size directory entries. /// /// public class ResourceDirectoryString { /// /// The size of the string, not including length field itself. /// public ushort Length; /// /// The variable-length Unicode string data, word-aligned. /// public byte[] UnicodeString; } }