Explicitly set ErrorAction enum underlying type to byte
Changed ErrorAction enum declaration to use byte as its underlying type for improved memory efficiency and clarity.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
namespace ReC.Domain.Constants;
|
namespace ReC.Domain.Constants;
|
||||||
|
|
||||||
public enum ErrorAction
|
public enum ErrorAction : byte
|
||||||
{
|
{
|
||||||
Stop = 0,
|
Stop = 0,
|
||||||
Continue = 1,
|
Continue = 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user