Change RecStatus enum type from short to byte

Reduced the underlying type of the RecStatus enum from short to byte to decrease memory usage. No changes were made to the enum values or their definitions.
This commit is contained in:
2026-04-15 17:02:28 +02:00
parent 9eb54565cb
commit c27ed1e744

View File

@@ -8,7 +8,7 @@
/// </para>
/// </summary>
/// <seealso cref="RecStatusExtensions"/>
public enum RecStatus : short
public enum RecStatus : byte
{
/// <summary>
/// Indicates that the operation completed successfully (value 0).