vote up 14 vote down star
7

Anyone have a good explanation or example they could post?

Edit: I changed the answer, this one is more in depth.

flag

78% accept rate

10 Answers

vote up 34 vote down check

The flags attribute should be used only when bitwise operations (and, or, exclusive or, not) is to be used on the enum. One example is

myProperties.AllowedColors = MyColor.Red | MyColor.Green | MyColor.Blue;

This will render the posibility to retrieve these three distinct values from your property AllowedColors.

For this to work the values in your enumeration need to be powers of two (as seen in Jay Mooneys example)

[Flags]
public enum MyColor
{
    Yellow = 1,
    Green = 2,
    Red = 4,
    Blue = 8
}

To retrieve the distinct values in you property one can do this

if((myProperties.AllowedColors & MyColor.Yellow) == MyColor.Yellow)
{
    // Yellow has been set...
}

if((myProperties.AllowedColors & MyColor.Green) == MyColor.Green)
{
    // Green has been set...
}

Under the covers

This works because you previously used multiples of two in you enumeration. Under the covers your enumeration values looks like this (presented as bytes, which has 8 bits which can be 1's or 0's)

 Yellow: 00000001
 Green:  00000010
 Red:    00000100
 Blue:   00001000

Likewise, after you've set your property AllowedColors to Red, Green and Blue (which values where OR'ed by the pipe |), AllowedColors looks like this

myProperties.AllowedColors: 00001110

So when you retreive the value you are actually bitwise AND'ing the values

myProperties.AllowedColors: 00001110
             MyColor.Green: 00000010
             -----------------------
                            00000010 // Hey, this is the same as MyColor.Green!

The None = 0 value

And regarding use 0 in you enumeration, quoting from msdn:

[Flags]
public enum MyColor
{
    None = 0,
    ....
}

Use None as the name of the flag enumerated constant whose value is zero. You cannot use the None enumerated constant in a bitwise AND operation to test for a flag because the result is always zero. However, you can perform a logical, not a bitwise, comparison between the numeric value and the None enumerated constant to determine whether any bits in the numeric value are set.

You can find more info about the flags attribute and its usage at msdn and designing flags at msdn

link|flag
1  
As OJ pointed out, the values need to be powers of two, not multiples. Please update your answer – Oskar Aug 6 at 9:07
Also, I don't get what the Flags attribute really does? I seem to be able to define and use my flags enum just fine without the attribute. Is it merely used as indication that the enum can be used as flags? – Oskar Aug 6 at 9:11
1  
Flags itself does nothing. Also, C# does not require Flags per se. But the ToString implementation of your enum uses Flags, and so does Enum.IsDefined, Enum.Parse, etc. Try to remove Flags and look at the result of MyColor.Yellow | MyColor.Red; without it you get "5", with Flags you get "Yellow, Red". Some other parts of the framework also use [Flags] (e.g., XML Serialization). – Ruben Aug 17 at 17:30
vote up 14 vote down

You can also do this

[Flags]
public enum MyEnum
{
    None = 0,
    First = 1,
    Second = 1 << 1,
    Third = 1 << 2,
    Fourth = 1 << 3
}

I find the bit-shifting easier than typing 4,8,16,32 and so on. It has no impact on your code because it's all done at compile time

link|flag
Thanks, that's great!! – abatishchev Feb 24 at 11:27
that is very nice – Robert MacLean Jun 2 at 10:05
And the first time ever to use the << for a valid reason. Cool Thanks – Roundcrisis Sep 12 at 10:36
vote up 11 vote down

Please see the following for an example which shows the declaration and potential usage:

namespace Flags
{
    class Program
    {

        [FlagsAttribute]
        public enum MyFlags : short
        {
            Foo = 0x1,
            Bar = 0x2,
            Baz = 0x4
        }

        static void Main(string[] args)
        {
            MyFlags fooBar = MyFlags.Foo | MyFlags.Bar;

            if ((fooBar & MyFlags.Foo) == MyFlags.Foo)
            {
                Console.WriteLine("Item has Foo flag set");
            }
        }
    }
}
link|flag
vote up 5 vote down

For this to work the values in your enumeration need to be multiples of two

This is not correct. The values need to be powers of two.

link|flag
vote up 4 vote down

I asked recently about something similar.

If you use flags you can add an extension method to enums to make checking the contained flags easier (see post for detail)

This allows you to do:

[Flags]
public enum PossibleOptions : byte
{
    None = 0,
    OptionOne = 1,
    OptionTwo = 2,
    OptionThree = 4,
    OptionFour = 8,

    //combinations can be in the enum too
    OptionOneAndTwo = OptionOne | OptionTwo,
    OptionOneTwoAndThree = OptionOne | OptionTwo | OptionThree,
    ...
}

Then you can do:

PossibleOptions opt = PossibleOptions.OptionOneTwoAndThree 

if( opt.IsSet( PossibleOptions.OptionOne ) ) {
    //optionOne is one of those set
}

I find this easier to read than the most ways of checking the included flags.

link|flag
IsSet is an extension method I assume? – Robert MacLean Jun 2 at 10:09
Yeah - read the other question that I link to for details: stackoverflow.com/questions/7244 – Keith Jun 2 at 12:16
vote up 2 vote down

Flags allow you to use bitmasking inside your enumeration. This allows you to combine enumeration values, while retaining which ones are specified.


    [Flags]
    public enum DashboardItemPresentationProperties : long
    {
    	None = 0,
    	HideCollapse = 1,
    	HideDelete = 2,
    	HideEdit = 4,
    	HideOpenInNewWindow = 8,
    	HideResetSource = 16,
    	HideMenu = 32
    }
link|flag
vote up 1 vote down

What's the correct way to add another flag value to an existing set of values?

eg:

    
    Mode = Mode.Read;
    //Add Mode.Write?
    Assert.True(((Mode & Mode.Write) == Mode.Write)
      && ((Mode & Mode.Read) == Mode.Read)));
link|flag
vote up 1 vote down

To add Mode.Write:

Mode = Mode | Mode.Write;
link|flag
or Mode |= Mode.Write – abatishchev Feb 24 at 11:29
vote up 1 vote down

@Nidonocu

To add another flag to an existing set of values, use the OR assignment operator.

Mode = Mode.Read;
//Add Mode.Write
Mode |= Mode.Write;
Assert.True(((Mode & Mode.Write) == Mode.Write)
  && ((Mode & Mode.Read) == Mode.Read)));
link|flag
vote up 1 vote down

Definition

[Flags] 
public enum Color 
{  
    Red, White, Blue
}

Usage

Color norwegianFlag = Color.Red | Color.White | Color.Blue

Use the [Flags] attribute to specify that you can combine its members.

Further reading: Enum values as bit flags - using FlagsAttribute

link|flag

Your Answer

Get an OpenID
or

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