vote up 9 vote down star

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?

flag

9 Answers

vote up 20 vote down check
if ((testItem & FlagTest.Flag1) == FlagTest.Flag1)
{
     // Do something
}
link|flag
vote up 1 vote down

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)

link|flag
vote up 3 vote down
if((testItem & FlagTest.Flag1) == FlagTest.Flag1) 
{
...
}
link|flag
vote up 1 vote down

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.

link|flag
vote up 8 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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);
    }
}
link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

:) 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 :)

link|flag

Your Answer

Get an OpenID
or

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