Ensure explicit getters and setters

This commit is contained in:
Matt Nadareski
2023-09-10 21:24:10 -04:00
parent e3c5c76ee5
commit 670b8428c2
277 changed files with 2583 additions and 2584 deletions

View File

@@ -13,15 +13,15 @@
/// <summary>
/// The size of the string, not including length field itself.
/// </summary>
public ushort Length;
public ushort Length { get; set; }
/// <summary>
/// The variable-length Unicode string data, word-aligned.
/// </summary>
#if NET48
public byte[] UnicodeString;
public byte[] UnicodeString { get; set; }
#else
public byte[]? UnicodeString;
public byte[]? UnicodeString { get; set; }
#endif
}
}