If I have a variable holding a flags enum, can I somehow iterate over the bit values in that specific variable? Or do I have to use Enum.GetValues to iterate over the entire enum and check which ones are set?
|
|
There aren't any methods AFAIK to get each component. Here's one way you can get them:
I've adapted what
The extension method
|
|||||||||||
|
|
|||||||||
|
|
You dont need to iterate all values. just check your specific flags like so:
or (as pstrjds said in comments) you can check for use it like:
|
|||||||||||||||||||
|
|
What I did was change my approach, instead of typing the input parameter of the method as the |
||||
|
|
|
You can use an Iterator from the Enum. Starting from the MSDN code:
It's not tested, so if I made a mistake feel free to call me out. (obviously it's not re-entrant.) You'd have to assign value beforehand, or break it out into another function that uses enum.dayflag and enum.days. You might be able to go somewhere with the outline. |
|||
|
|
|
Wasn't satisfied with the answers above, although they were the start. After piecing together some different sources here: I created this so let me know what you think.
This makes use of the Helper Class Enum<T> found here that I updated to use
Finally, here's a example of using it:
|
|||
|
|
I used the extension method above to help solve a problem I had for trying to use HasFlag for multiple flags. Here's the link to my post. link text. I hope it helps someone. |
|||
|
|
|
Building upon Greg's answer above, this also takes care of the case where you have a value 0 in your enum, such as None = 0. In which case, it should not iterate over that value.
Would anyone know how to improve upon this even further so that it can handle the case where all flags in the enum are set in a super smart way that could handle all underlying enum type and the case of All = ~0 and All = EnumValue1 | EnumValue2 | EnumValue3 | ... |
|||
|
|