Flag属性的
MSDN documentation表示您应该:
Define enumeration constants in powers of two,that is,1,2,4,8,
and so on. This means the individual flags in combined enumeration
constants do not overlap.
……当然,我总是试着记住这样做.但是,没有任何强制执行,如果你只是创建一个枚举’基本’的方式,如…
[Flags] public enum BrokenEnum { None,FirstOption,SecondOption,ThirdOption }
……它的行为不会像预期的那样.为了解决这个问题,我正在寻找某种静态代码分析(如FxCop),当我的代码中存在类似上面的枚举时,它可以发出警告.我能找到的最接近的警告是’CA1008: Enums should have zero value‘ – 这也有助于正确设计标志枚举,但还不够.