限制Flags的可能组合
本文关键字:组合 Flags 限制 | 更新日期: 2023-09-27 18:19:55
有没有一种方法可以在枚举中组合标志,但可以限制可能的组合?我有一个这样的枚举:
[Flags]
public enum CopyFlags
{
/// <summary>
/// Copy members regardless of their actual case
/// </summary>
CaseSensitive = 1,
/// <summary>
/// Indicates if a leading underscore (e.g. _myMember) should be ignored while comparing member-names.
/// </summary>
IgnoreLeadingUnderscore = 2,
/// <summary>
/// Indicates if only properties should be copied. Usefull when all technical data is stored in properties.
/// </summary>
PropertiesOnly = 4
}
现在我也想介绍一个FieldsOnly
-值,但要确保它只在PropertiesOnly
不存在时使用。这可能吗?
不,这是不可能的。甚至不可能将值限制为列出的项。例如,C#中允许以下内容:
CopyFlags flags = (CopyFlags)358643;
您需要在包含CopyFlags
参数的方法内部显式执行验证。
不,在枚举的上下文中是不可能的;相反,你必须验证它:
public void DoSomething(CopyFlag flag)
{
if (flag.HasFlag(CopyFlags.PropertiesOnly) && flag.HasFlag(CopyFlags.FieldsOnly))
throw new ArgumentException();
}