Tagged Questions
18
votes
6answers
371 views
What Does the [Flags] Attribute Really Do?
What does applying [Flags] really do?
I know it modifies the behavior of Enum.ToString, but does it do anything else? (e.g. Different compiler or runtime behavior, etc.)
Edit: Yeah, I'm aware that ...
9
votes
2answers
576 views
Type safe(r) bitflags in C++?
While revising some old c++ code, I ran across several bitflags defined as enums.
enum FooFlags
{
FooFlag1 = 1 << 0,
FooFlag2 = 1 << 1,
FooFlag3 = 1 << 2
// etc...
...
4
votes
5answers
113 views
Is there a pattern or a method in C# to check if an (int 1,2,4,8,…) option is true or false
I like to write enum or integer to pass option to my methods. Is there a pattern or a method in C# to check if an (int 1,2,4,8,...) option is true or false. I think it should easily be possible via ...
3
votes
2answers
230 views
Flags in VB6 does not return a correct value
I am currently trying to use a bit flag enum in a VB6 / COM project.
However, when trying to read values from the enum, I get inconsistent results.
Here is the enum definition :
Enum Fruits
None ...
3
votes
6answers
385 views
Why does [Flag]'d enums start at 0 and increment by 1?
Edit: It seems most people misunderstood my question.
I know how enum works, and I know binary. I'm wondering why the enums with the [Flags] attribute is designed the way it is.
Original post:
This ...
2
votes
4answers
71 views
What does the bitwise OR operator (|) mean when used with two enumerated values? [closed]
Possible Duplicate:
Enum Flags Attribute
In this context:
IsolatedStorageFile.GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.User, null)
What exactly is the | being used ...
2
votes
4answers
575 views
Bitflag enums in C++
Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting.
The accepted answer for ...
1
vote
6answers
489 views
#defined bitflags and enums - peaceful coexistence in “c”
I have just discovered the joy of bitflags. I have several questions related to "best-practices" regarding the use of bitflags in C. I learned everything from various examples I found on the web but ...
0
votes
1answer
100 views
C# int to Flag Enum [closed]
Possible Duplicate:
C# int to enum conversion
Is it somehow possible to convert an int to a flag combination enum? So, if
[Flags]
public enum Foo {a = 0x80,
b = 0x40,
...
0
votes
4answers
829 views
Enum bitfield container class
Im trying to write a small class to better understand bit flags in c++. But something isnt working out. It prints the wrong values. Where is the problem? Have I misunderstood how to add flags? Or ...