According to my code a=1, b=2, c=3 etc. I thought the flag would make a=1, b=2, c=4, etc
[Flags]
public enum someEnum { none, a, b, c, d, e, f, }
How do i get what i intended(c=4, e=8)? and what does the [Flags] mean above?
|
|
According to my code a=1, b=2, c=3 etc. I thought the flag would make a=1, b=2, c=4, etc
How do i get what i intended(c=4, e=8)? and what does the
|
|||
|
|
|
|
Flags Attribute indicates that an enumeration can be treated as a bit field; that is, a set of flags. |
||
|
|
|
|
You can specify values for the enums, this is needed for flags cases:
It means the runtime will support bitwise operations on the values. It makes no difference to the values the compiler will generate. E.g. if you do this
with the Flags attribute the result of EDIT: Updated with better names, and the compiler doesn't complain using bitwise ops on a non-flags attribute, at least not C#3 or 4 (news to me). |
||||||||||
|
|
|
It also does not alter the bitwise operations that the compiler will allow on the enum. What it does do is alter the behaviour of the |
||
|
|
|
|
The Flags attribute really only affects the behaviour/output of the ToString(), Parse() and IsDefined() methods on your enumeration. You can perform bitwise operations without using the Flags attribute, as long as you use powers of two values. Read this existing question (and answers) for more detailed coverage. |
||
|
|