Anyone have a good explanation or example they could post?
Edit: I changed the answer, this one is more in depth.
|
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 Incorrect declaration:
The values, if declared this way, will be Yellow = 0, Green = 1, Red = 2, Blue = 3. This will render it useless for use as flags. Here's an example of a correct declaration:
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 |
|||||||||||||||||||||
|
|
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 |
|||||||||||||||||||||
|
|
Please see the following for an example which shows the declaration and potential usage:
|
|||
|
|
|
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. |
|||||||||
|
|
@Nidonocu To add another flag to an existing set of values, use the OR assignment operator.
|
|||
|
|
|
It is possible to not have to worry about the ordering of flags by using a T4 Template:
And here's the fun part (placed at the end of the template document):
Output:
Cheers, Vince |
|||||||||||
|
|
Flags allow you to use bitmasking inside your enumeration. This allows you to combine enumeration values, while retaining which ones are specified.
|
|||
|
|
|
To add Mode.Write:
|
|||||
|
|
There's something overly verbose to me about the In this case, all you really need to know is if there's a positive value after you've bitmasked. Building off of @andnil's setup...
|
|||
|
|
|
Combining answers http://stackoverflow.com/a/8462/1037948 (declaration via bit-shifting) and http://stackoverflow.com/a/9117/1037948 (using combinations in declaration) you can bit-shift previous values rather than using numbers. Not necessarily recommending it, but just pointing out you can. Rather than:
You can declare
Confirming with LinqPad:
Results in:
|
|||||
|
myProperties.AllowedColors = ....Where did you getAllowedColorsfrom? – M E Moriarty Mar 6 at 22:38