mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-08-01 21:48:45 +00:00
Ensure explicit getters and setters
This commit is contained in:
@@ -14,16 +14,16 @@
|
||||
/// the size field itself, so that the value in this location would be 4 if no
|
||||
/// strings were present.
|
||||
/// </summary>
|
||||
public uint TotalSize;
|
||||
public uint TotalSize { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Following the size are null-terminated strings that are pointed to by symbols
|
||||
/// in the COFF symbol table.
|
||||
/// </summary>
|
||||
#if NET48
|
||||
public string[] Strings;
|
||||
public string[] Strings { get; set; }
|
||||
#else
|
||||
public string[]? Strings;
|
||||
public string[]? Strings { get; set; }
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user