Anyone have a good explanation or example they could post?
Edit: I changed the answer, this one is more in depth.
|
7
|
|
|
|
|
|
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
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)
To retrieve the distinct values in you property one can do this
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)
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
So when you retreive the value you are actually bitwise AND'ing the values
The None = 0 value And regarding use 0 in you enumeration, quoting from msdn:
You can find more info about the flags attribute and its usage at msdn and designing flags at msdn |
||||||||||
|
|
|
Flags allow you to use bitmasking inside your enumeration. This allows you to combine enumeration values, while retaining which ones are specified.
|
||
|
|
|
|
Definition
Usage
Use the [Flags] attribute to specify that you can combine its members. Further reading: Enum values as bit flags - using FlagsAttribute |
|||
|
|
|
|
Please see the following for an example which shows the declaration and potential usage:
|
||
|
|
|
|
You can also do this
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 |
||||||
|
|
|
What's the correct way to add another flag value to an existing set of values? eg:
|
||
|
|
|
|
To add Mode.Write:
|
||
|
|
|
@Nidonocu To add another flag to an existing set of values, use the OR assignment operator.
|
||
|
|
|
|
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:
Then you can do:
I find this easier to read than the most ways of checking the included flags. |
||||
|
|
|
This is not correct. The values need to be powers of two. |
||
|
|