I noticed these two patterns for checking for an enum flag:
[Flags]
public enum PurchaseType
{
None = 0,
SalePrice = 2,
RegularPrice = 4,
Clearance = 8,
CreditCard = 16
}
public void Test()
{
PurchaseType type = PurchaseType.Clearance;
type |= PurchaseType.CreditCard;
// Practice 1
if ((type & PurchaseType.Clearance) == PurchaseType.Clearance)
{
// Clearance item handling
}
// Practice 2
if ((type & PurchaseType.CreditCard) != 0)
{
// Credit card item handling
}
}
Of the two ways of checking for an enum flag, which one is better w.r.t performance, readability, code health, and any other considerations I should make?
Thanks, Mohammed
PurchaseType.Nonewith practice 2? Edit: I guess you could do (type & PurchaseType.None) == 0, but then now your checks are not really consistent. – Tung May 13 '12 at 19:02Noneis not a flag that can be tested for.type & PurchaseType.Noneis0for all values oftype. You can never test forNoneso there's no point in worrying about how to do what cannot be done and is never done. – David Heffernan May 13 '12 at 19:13