Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a flag enum below.

[Flags]
public enum FlagTest
{
    None = 0x0,
    Flag1 = 0x1,
    Flag2 = 0x2,
    Flag3 = 0x4
}

I cannot make the if statement evaluate to true.

FlagTest testItem = FlagTest.Flag1 | FlagTest.Flag2;

if (testItem == FlagTest.Flag1)
{
    // Do something,
    // however This is never true.
}

How can I make this true?

share|improve this question
Correct me if I'm wrong, is 0 appropriate to be used as flag value? – Roylee Jan 17 at 16:11
1  
@Roylee: 0 is acceptable, and it's a good idea to have a "None" or "Undefined" flag in order to test having no flags set. It's by no means required, but it's a good practice. The important thing to remember about this is pointed out by Leonid in his answer. – Andy Mar 10 at 19:08
1  
@Roylee It is actually recommended by Microsoft to provide a None flag with a value of zero. See msdn.microsoft.com/en-us/library/vstudio/… – ThatMatthew Apr 17 at 19:27

11 Answers

up vote 93 down vote accepted
if ((testItem & FlagTest.Flag1) == FlagTest.Flag1)
{
     // Do something
}
share|improve this answer

In .NET 4 there is a new method Enum.HasFlag. This allows you to write:

if ( testItem.HasFlag( FlagTest.Flag1 ) )
{
    // Do Stuff
}

which is much more readable, IMO.

share|improve this answer
11  
Ah, finally something out of the box. This is great, I've been waiting for this relatively simple feature for a long time. Glad they decided to slip it in. – Rob van Groenewoud Apr 13 '10 at 22:25
4  
Note, however, the answer below showing performance issues with this method -- this might be an issue for some people. Happily not for me. – Andy Mortimer Nov 18 '11 at 10:58
The performance consideration for this method is boxing because it takes arguments as an instance of the Enum class. – Adam Houldsworth Dec 7 '12 at 16:18

:) For those who have trouble visualizing what is happening with the accepted solution (which is this)

if ((testItem & FlagTest.Flag1) == FlagTest.Flag1)
{
    // do stuff
}

We have (as per the question) test item defined as so

testItem 
 = flag1 | flag2  
 = 001 | 010  
 = 011

Then in the if statement the left hand side of the equals is as so:

(testItem & flag1) 
 = (011 & 001) 
 = 001

And the full if statement (that evaluates to true if flag1 is set in testItem) as so

(testItem & flag1) == flag1
 = (001) == 001
 = true

Hope that makes sense to people :)

share|improve this answer

I set up an extension method to do it: related question.

Basically:

public static bool IsSet( this Enum input, Enum matchTo )
{
    return ( Convert.ToUInt32( input ) & Convert.ToUInt32( matchTo ) ) != 0;
}

Then you can do:

FlagTests testItem = FlagTests.Flag1 | FlagTests.Flag2;

if( testItem.IsSet ( FlagTests.Flag1 ) )
    //Flag1 is set


Incidentally the convention I use for enums is singular for standard, plural for flags. That way you know from the enum name whether it can hold multiple values.

share|improve this answer
This should be a comment but as I'm a new user it looks like I just can't add comments yet... public static bool IsSet( this Enum input, Enum matchTo ) { return ( Convert.ToUInt32( input ) & Convert.ToUInt32( matchTo ) ) != 0; } Is there a way to be compatible with any kind of enum (because here it won't work if your enum is of type UInt64 or can have negative values)? – user276648 Feb 19 '10 at 3:53
This is quite redundant with Enum.HasFlag(Enum) (available in .net 4.0) – PPC Apr 11 '12 at 17:58
1  
@PPC I wouldn't say redundant exactly - plenty of people are developing on older versions of the framework. You are right though, .Net 4 users should use the HasFlag extension instead. – Keith Apr 12 '12 at 9:55
1  
@Keith: Also, there is a notable difference: ((FlagTest)0x1).HasFlag(0x0) will return true, which may or may not be a wanted behaviour – PPC Apr 12 '12 at 18:05

@phil-devaney

Note that except in the simplest of cases, the Enum.HasFlag carries a heavy performance penalty in comparison to writing out the code manually. Consider the following code:

[Flags]
public enum TestFlags
{
    One = 1,
    Two = 2,
    Three = 4,
    Four = 8,
    Five = 16,
    Six = 32,
    Seven = 64,
    Eight = 128,
    Nine = 256,
    Ten = 512
}


class Program
{
    static void Main(string[] args)
    {
        TestFlags f = TestFlags.Five; /* or any other enum */
        bool result = false;

        Stopwatch s = Stopwatch.StartNew();
        for (int i = 0; i < 10000000; i++)
        {
            result |= f.HasFlag(TestFlags.Three);
        }
        s.Stop();
        Console.WriteLine(s.ElapsedMilliseconds); // *4793 ms*

        s.Restart();
        for (int i = 0; i < 10000000; i++)
        {
            result |= (f & TestFlags.Three) != 0;
        }
        s.Stop();
        Console.WriteLine(s.ElapsedMilliseconds); // *27 ms*        

        Console.ReadLine();
    }
}

Over 10 million iterations, the HasFlags extension method takes a whopping 4793 ms, compared to the 27 ms for the standard bitwise implementation.

share|improve this answer
3  
Indeed. If you look at the implementation of HasFlag, you'll see that it does a "GetType()" on both operands, which is quite slow. Then it does "Enum.ToUInt64(value.GetValue());" on both operands before doing the bitwise check. – user276648 Sep 26 '11 at 6:36
This is a huge performance difference for a very small functionality gain. Worth stopping using HasFlag() – PPC Apr 12 '12 at 18:07

One more piece of advice... Never do the standard binary check with the flag whose value is "0". Your check on this flag will always be true.

[Flags]
public enum LevelOfDetail
{
    [EnumMember(Value = "FullInfo")]
    FullInfo=0,
    [EnumMember(Value = "BusinessData")]
    BusinessData=1
}

If you binary check input parameter against FullInfo - you get:

detailLevel = LevelOfDetail.BusinessData;
bool bPRez = (detailLevel & LevelOfDetail.FullInfo) == LevelOfDetail.FullInfo;

bPRez will always be true as ANYTHING & 0 always == 0.


Instead you should simply check that the value of the input is 0:

bool bPRez = (detailLevel == LevelOfDetail.FullInfo);
share|improve this answer
This is an important point to remember when setting up your Flags enum. Thanks for reminding us. – Andy Mar 10 at 19:01
if((testItem & FlagTest.Flag1) == FlagTest.Flag1) 
{
...
}
share|improve this answer

Not sure why:

if(testItem & FlagTest.Flag1)

is getting upmodded. It won't compile as it is missing the check for eqality. FlagTest & FlagTest does not evaluate to true/false and will therefore get a compiler error.

share|improve this answer

For bit operations, you need to use bitwise operators.

This should do the trick:

if ((testItem & FlagTest.Flag1) == FlagTest.Flag1)
{
    // Do something,
    // however This is never true.
}

Edit: Fixed my if check - I slipped back into my C/C++ ways (thanks to Ryan Farley for pointing it out)

share|improve this answer

Try this:


if ((testItem & FlagTest.Flag1) == FlagTest.Flag1)
{
    // do something
}
Basically, your code is asking if having both flags set is the same as having one flag set, which is obviously false. The code above will leave only the Flag1 bit set if it is set at all, then compares this result to Flag1.

share|improve this answer

Regarding the edit. You can't make it true. I suggest you wrap what you want into another class (or extension method) to get closer to the syntax you need.

i.e.

public class FlagTestCompare
{
    public static bool Compare(this FlagTest myFlag, FlagTest condition)
    {
         return ((myFlag & condition) == condition);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.