namespace SabreTools.Models.NewExecutable { /// /// Resource type and name strings are stored at the end of the /// resource table. Note that these strings are NOT null terminated and /// are case sensitive. /// /// public sealed class ResourceTypeAndNameString { /// /// Length of the type or name string that follows. A zero value /// indicates the end of the resource type and name string, also /// the end of the resource table. /// public byte Length { get; set; } /// /// ASCII text of the type or name string. /// #if NET48 public byte[] Text { get; set; } #else public byte[]? Text { get; set; } #endif } }