Anyone have a good explanation or example they could post?
Edit: I changed the answer, this one is more in depth.
|
feedback
|
|
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:
Note that
It is also important to note that
To retrieve the distinct values in you property one can do this
or, in .NET 4 and later,
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 | |||||||||||||
feedback
|
|
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 | |||||||||||||||||
feedback
|
|
Please see the following for an example which shows the declaration and potential usage:
| |||
|
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:
Then you can do:
I find this easier to read than the most ways of checking the included flags. | |||||||||
feedback
|
This is not correct. The values need to be powers of two. | |||
|
feedback
|
|
@Nidonocu To add another flag to an existing set of values, use the OR assignment operator.
| |||
|
feedback
|
|
Flags allow you to use bitmasking inside your enumeration. This allows you to combine enumeration values, while retaining which ones are specified.
| |||
|
feedback
|
|
To add Mode.Write:
| |||||
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:
no? | |||
feedback
|
|
What's the correct way to add another flag value to an existing set of values? eg:
| |||
|
feedback
|
|
Definition
Usage
Use the [Flags] attribute to specify that you can combine its members. Further reading: Enum values as bit flags - using FlagsAttribute | |||||
feedback
|
|
In addition to the awesome answers above, this is a great reference | |||
|
feedback
|