up vote 67 down vote favorite
40
share [g+] share [fb]

Anyone have a good explanation or example they could post?

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

link|improve this question

76% accept rate
feedback

12 Answers

up vote 121 down vote accepted

The flags attribute should be used whenever the enumerable represents a collection of flags, rather than a single value. Such collections are usually manipulated using bitwise operators, for example:

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

Note that [Flags] by itself doesn't change this at all - all it does is enable a nice representation by the .ToString() method:

[Flags] enum SuitsFlags { Spades = 1, Clubs = 2, Diamonds = 4, Hearts = 8 }
enum Suits { Spades = 1, Clubs = 2, Diamonds = 4, Hearts = 8 }

...

var str1 = (Suits.Spades | Suits.Diamonds).ToString();
           // "5"
var str2 = (SuitsFlags.Spades | SuitsFlags.Diamonds).ToString();
           // "Spades, Diamonds"

It is also important to note that [Flags] does not automatically make the enum values powers of two. If you omit the numeric values, the enum will not work as one might expect in bitwise operations. Here's an example of a correct declaration:

[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...
}    

or, in .NET 4 and later,

if (myProperties.AllowedColors.HasFlag(MyColor.Yellow))
{
    // Yellow 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|improve this answer
1  
As OJ pointed out, the values need to be powers of two, not multiples. Please update your answer – Oskar Aug 6 '09 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 '09 at 9:11
16  
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 '09 at 17:30
+1 for pointing to the new "HasFlag" method. – flq Aug 31 '11 at 13:12
feedback

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|improve this answer
Thanks, that's great!! – abatishchev Feb 24 '09 at 11:27
that is very nice – Robert MacLean Jun 2 '09 at 10:05
7  
And the first time ever to use the << for a valid reason. Cool Thanks – Miau Sep 12 '09 at 10:36
15  
And if you like consistency, you can use First = 1 << 0. – romkyns Jan 10 '11 at 11:30
4  
Love those bitwise ninja-tricks! – Torbjörn Hansson Mar 7 '11 at 17:07
feedback

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|improve this answer
feedback

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|improve this answer
IsSet is an extension method I assume? – Robert MacLean Jun 2 '09 at 10:09
Yeah - read the other question that I link to for details: stackoverflow.com/questions/7244 – Keith Jun 2 '09 at 12:16
7  
.NET 4 adds a HasFlag method to enumerations, so you can do opt.HasFlag( PossibleOptions.OptionOne ) without having to write your own extensions – Orion Edwards Jul 19 '10 at 20:53
feedback

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|improve this answer
feedback

@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|improve this answer
feedback

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|improve this answer
feedback

To add Mode.Write:

Mode = Mode | Mode.Write;
link|improve this answer
2  
or Mode |= Mode.Write – abatishchev Feb 24 '09 at 11:29
feedback

What am I missing here? Since enum's are (per default) using int to store the value, standard bitwise operations have always worked without [flags], like this:

    enum MyEnum
    {
        enum1 = 1,
        enum2 = 2,
        enum4 = 4
    }
    private void testBitwiseEnums()
    {
        MyEnum result = MyEnum.enum1 | MyEnum.enum2;

        if ((result & MyEnum.enum2) == MyEnum.enum2)
        {
            //this will happen
        }

        if ((result & MyEnum.enum4) == MyEnum.enum4)
        {
            //this will NOT happen
        }

        result |= MyEnum.enum4;
        if ((result & MyEnum.enum4) == MyEnum.enum4)
        {
            //this will happen
        }

        result &= ~MyEnum.enum4;
        if ((result & MyEnum.enum4) == MyEnum.enum4)
        {
            //this will NOT happen
        }
    }

no?

link|improve this answer
true, as Andreas suggests "all it does is enable a nice representation by the .ToString() method" and I would say it shows intent and allows reflection. – CRice Jun 21 '11 at 1:23
feedback

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|improve this answer
feedback

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|improve this answer
3  
you have to explicitely specify the values of a flags enumeration if you want something sensible; with your example, Red=0, White=1 and Blue=2. You should assign power of two values (0x01, 0x02, 0x04, 0x08, 0x10, etc.) and include a None value of zero. The blog post you are referring to is mistaken; follow the discussions going on there. Or try it out for yourself... – Pierre Oct 21 '10 at 12:16
feedback

In addition to the awesome answers above, this is a great reference

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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