mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-24 09:42:16 +00:00
Fix warnings from nullabilty
This commit is contained in:
@@ -27,7 +27,11 @@ namespace SabreTools.Models.PortableExecutable
|
||||
/// <summary>
|
||||
/// The resource data that is pointed to by the Data RVA field.
|
||||
/// </summary>
|
||||
#if NET48
|
||||
public byte[] Data;
|
||||
#else
|
||||
public byte[]? Data;
|
||||
#endif
|
||||
|
||||
/// <summary>
|
||||
/// The code page that is used to decode code point values within the
|
||||
|
||||
Reference in New Issue
Block a user